Example #1
0
 public SendTextCardMessageData(string chatid, Chat_TextCard textcard, int?safe = null) : this(chatid, safe)
 {
     this.textcard = textcard;
 }
Example #2
0
 public SendTextCardMessageData(string chatid, string title, string description, string url, string btntxt = null, int?safe = null) : this(chatid, safe)
 {
     textcard = new Chat_TextCard(title, description, url, btntxt);
 }