예제 #1
0
 public async Task <bool> SendPhotoToGroup(int Id, IPhotoItem Photo)
 {
     return(await this.SendMedia(Id, Photo, ePeerType.Group));
 }
예제 #2
0
 public async Task <bool> SendPhotoToChannel(int Id, IPhotoItem Photo)
 {
     return(await this.SendMedia(Id, Photo, ePeerType.Channel));
 }
예제 #3
0
 public async Task <bool> SendPhotoToMe(IPhotoItem Photo)
 {
     return(await this.SendMedia(0, Photo, ePeerType.Self));
 }