15 lines
456 B
C#
15 lines
456 B
C#
|
namespace jtom38.Newsbot.Domain.Models.Collector;
|
||
|
|
||
|
public class SourceDto
|
||
|
{
|
||
|
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 string[]? Tags { get; set; }
|
||
|
public bool Deleted { get; set; }
|
||
|
}
|