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; } } public class ConnectionStrings { public string Database { get; set; } = ""; }