Newsbot.Collector/Newsbot.Collector.Domain/Consts/ConfigYoutubeConst.cs

10 lines
289 B
C#
Raw Normal View History

namespace Newsbot.Collector.Domain.Consts;
/// <summary>
/// This class contains const entries to access keys within IConfiguration.
/// </summary>
public class ConfigYoutubeConst
{
public const string IsEnable = "Youtube:IsEnabled";
public const string Debug = "Youtube:Debug";
}