jetherald/JetHerald/Configs.cs
Basique Evangelist db78d4a3c7 Timeouts
(cherry picked from commit 52ae87ca911fb7f5794e64ab7213c5b791ce085d)
2021-10-16 19:59:34 +03:00

30 lines
663 B
C#

namespace JetHerald.Options
{
public class ConnectionStrings
{
public string DefaultConnection { get; set; }
}
public class Telegram
{
public string ApiKey { get; set; }
public bool UseProxy { get; set; }
public string ProxyUrl { get; set; }
public string ProxyPassword { get; set; }
public string ProxyLogin { get; set; }
}
public class Discord
{
public string Token { get; set; }
}
public class Timeout
{
public int DebtLimitSeconds { get; set; }
public int HeartbeatCost { get; set; }
public int ReportCost { get; set; }
}
}