Ejemplo n.º 1
0
 public SendVideoMessageData(string chatid, Chat_MediaVideo video, int?safe = null) : this(chatid, safe)
 {
     this.video = video;
 }
Ejemplo n.º 2
0
 public SendVideoMessageData(string chatid, string media_id, string title = null, string description = null, int?safe = null) : this(chatid, safe)
 {
     video = new Chat_MediaVideo(media_id, title, description);
 }