11 lines
355 B
C#
11 lines
355 B
C#
|
namespace Newsbot.Collector.Domain.Consts;
|
||
|
|
||
|
/// <summary>
|
||
|
/// This class contains const entries to access keys within IConfiguration.
|
||
|
/// </summary>
|
||
|
public class ConfigTwitchConst
|
||
|
{
|
||
|
public const string IsEnabled = "Twitch:IsEnabled";
|
||
|
public const string ClientID = "Twitch:ClientID";
|
||
|
public const string ClientSecret = "Twitch:ClientSecret";
|
||
|
}
|