16 lines
414 B
C#
16 lines
414 B
C#
|
namespace Newsbot.Collector.Domain.Models;
|
||
|
|
||
|
public class ConfigModel
|
||
|
{
|
||
|
public string? ServerAddress { get; set; }
|
||
|
public string? SqlConnectionString { get; set; }
|
||
|
public RedditConfigModel? Reddit { get; set; }
|
||
|
}
|
||
|
|
||
|
public class RedditConfigModel
|
||
|
{
|
||
|
public bool IsEnabled { get; set; }
|
||
|
public bool PullHot { get; set; }
|
||
|
public bool PullNsfw { get; set; }
|
||
|
public bool PullTop { get; set; }
|
||
|
}
|