9 lines
292 B
C#
9 lines
292 B
C#
|
namespace Newsbot.Collector.Domain.Consts;
|
||
|
|
||
|
public class ConfigRedditConst
|
||
|
{
|
||
|
public const string IsEnabled = "Reddit:IsEnabled";
|
||
|
public const string PullHot = "Reddit:PullHot";
|
||
|
public const string PullNsfw = "Reddit:PullNsfw";
|
||
|
public const string PullTop = "Reddit:PullTop";
|
||
|
}
|