mirror of
https://github.com/Jetsparrow/jetherald.git
synced 2026-01-20 23:56:08 +03:00
24 lines
421 B
C#
24 lines
421 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; }
|
|
}
|