9 lines
247 B
C#
9 lines
247 B
C#
|
namespace Newsbot.Collector.Domain.Models.Config;
|
||
|
|
||
|
public class ConfigSectionRedditModel
|
||
|
{
|
||
|
public bool IsEnabled { get; set; }
|
||
|
public bool PullHot { get; set; }
|
||
|
public bool PullNsfw { get; set; }
|
||
|
public bool PullTop { get; set; }
|
||
|
}
|