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