2023-07-06 22:20:13 -07:00
|
|
|
namespace Newsbot.Collector.Domain.Models.Config.Sources;
|
2023-03-31 23:00:15 -07:00
|
|
|
|
|
|
|
public class ConfigSectionRedditModel
|
|
|
|
{
|
|
|
|
public bool IsEnabled { get; set; }
|
|
|
|
public bool PullHot { get; set; }
|
|
|
|
public bool PullNsfw { get; set; }
|
|
|
|
public bool PullTop { get; set; }
|
|
|
|
}
|