mirror of
https://github.com/Jetsparrow/jetherald.git
synced 2026-01-21 07:56:09 +03:00
31 lines
583 B
C#
31 lines
583 B
C#
namespace JetHerald.Options;
|
|
|
|
public class ConnectionStrings
|
|
{
|
|
public string DefaultConnection { get; set; }
|
|
}
|
|
|
|
public class TelegramConfig
|
|
{
|
|
public string ApiKey { get; set; }
|
|
}
|
|
|
|
public class DiscordConfig
|
|
{
|
|
public string Token { get; set; }
|
|
}
|
|
|
|
public class TimeoutConfig
|
|
{
|
|
public int DebtLimitSeconds { get; set; }
|
|
public int HeartbeatCost { get; set; }
|
|
public int ReportCost { get; set; }
|
|
}
|
|
|
|
|
|
public class AuthConfig
|
|
{
|
|
public int InviteCodeLength { get; set; }
|
|
public int TicketIdLengthBytes { get; set; }
|
|
public int HashType { get; set; }
|
|
} |