public SendPhoto(string channelName, FileToSend photo) : base(channelName, "sendPhoto", "photo") { this.File = photo; }
public SendPhoto(long chatId, FileToSend photo) : base(chatId, "sendPhoto", "photo") { this.File = photo; }
public SendVideo(string channelName, FileToSend video) : base(channelName, "sendVideo", "video") { this.File = video; }
public SendVideo(long chatId, FileToSend video) : base(chatId, "sendVideo", "video") { this.File = video; }
public SendSticker(string channelName, FileToSend sticker) : base(channelName, "sendSticker", "sticker") { this.File = sticker; }
public SendSticker(long chatId, FileToSend sticker) : base(chatId, "sendSticker", "sticker") { this.File = sticker; }