sozsoft-platform/api/modules/Sozsoft.Sender/Telegram/TelegramPostMessageInput.cs

10 lines
253 B
C#
Raw Normal View History

2026-08-28 12:03:36 +00:00
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; }
}