15 lines
458 B
C#
15 lines
458 B
C#
|
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<string>? Tags { get; set; }
|
||
|
public bool Deleted { get; set; }
|
||
|
}
|