namespace Newsbot.Collector.Client.Domain.Dto; public class SourcesDto { public Guid Id { get; set; } public string? Site { get; set; } public string? Name { get; set; } public string? Source { get; set; } public string? Type { get; set; } public string? Value { get; set; } public bool Enabled { get; set; } public string? Url { get; set; } public List? Tags { get; set; } public bool Deleted { get; set; } }