9 lines
253 B
C#
9 lines
253 B
C#
namespace Sozsoft.Sender.Telegram;
|
|
|
|
public class TelegramPostMessageInput
|
|
{
|
|
public string chat_id { get; set; }
|
|
public string text { get; set; }
|
|
public string parse_mode { get; set; }
|
|
public bool disable_web_page_preview { get; set; }
|
|
}
|