2023-04-01 08:53:34 -07:00
|
|
|
namespace Newsbot.Collector.Domain.Consts;
|
|
|
|
|
|
|
|
public class ConfigConst
|
|
|
|
{
|
2023-04-03 08:57:19 -07:00
|
|
|
public const string LoggingDefault = "Logging:LogLevel:Default";
|
2023-04-10 22:59:13 -07:00
|
|
|
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string SectionConnectionStrings = "ConnectionStrings";
|
|
|
|
public const string SectionFinalFantasyXiv = "FinalFantasyXiv";
|
|
|
|
public const string SectionReddit = "Reddit";
|
|
|
|
public const string SectionRss = "Rss";
|
|
|
|
public const string SectionTwitch = "Twitch";
|
|
|
|
public const string SectionYoutube = "Youtube";
|
2023-04-10 22:59:13 -07:00
|
|
|
public const string SectionCodeProjects = "CodeProjects";
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string SectionNotificationsDiscord = "Notifications:Discord";
|
2023-04-10 22:59:13 -07:00
|
|
|
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string ConnectionStringDatabase = "ConnectionStrings:Database";
|
|
|
|
public const string ConnectionStringOpenTelemetry = "ConnectionStrings:OpenTelemetry";
|
2023-04-10 22:59:13 -07:00
|
|
|
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string RedditIsEnabled = "Reddit:IsEnabled";
|
|
|
|
public const string RedditPullHot = "Reddit:PullHot";
|
|
|
|
public const string RedditPullNsfw = "Reddit:PullNsfw";
|
|
|
|
public const string RedditPullTop = "Reddit:PullTop";
|
|
|
|
|
|
|
|
public const string RssIsEnabled = "Rss:IsEnabled";
|
2023-04-10 22:59:13 -07:00
|
|
|
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string TwitchIsEnabled = "Twitch:IsEnabled";
|
|
|
|
public const string TwitchClientId = "Twitch:ClientID";
|
|
|
|
public const string TwitchClientSecret = "Twitch:ClientSecret";
|
2023-04-10 22:59:13 -07:00
|
|
|
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string YoutubeIsEnable = "Youtube:IsEnabled";
|
|
|
|
public const string YoutubeDebug = "Youtube:Debug";
|
|
|
|
|
2023-04-10 22:59:13 -07:00
|
|
|
public const string CodeProjectsIsEnabled = "CodeProjects:IsEnabled";
|
|
|
|
|
2023-04-01 08:53:34 -07:00
|
|
|
public const string EnableSwagger = "EnableSwagger";
|
|
|
|
|
|
|
|
public const string DiscordNotificationsEnabled = "Notifications:Discord:IsEnabled";
|
|
|
|
}
|