10 lines
289 B
C#
10 lines
289 B
C#
|
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";
|
||
|
}
|