sozsoft-platform/api/modules/Sozsoft.Sender/Telegram/TelegramPostMessageInput.cs
2026-08-28 15:03:36 +03:00

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; }
}