Files
Telegrator/src/Telegrator.Hosting.WideBot/WideBotOptions.cs
T

17 lines
344 B
C#
Raw Normal View History

2026-05-01 20:48:32 +04:00
using WTelegram;
namespace Telegrator;
public class WideBotOptions
{
public required int ApiId { get; set; }
public required string ApiHash { get; set; }
public string? MTProxy { get; set; }
public bool DropPendingUpdates { get; set; }
public SqlCommands SqlCommands { get; set; } = WTelegram.SqlCommands.Detect;
}