18 lines
635 B
C#
18 lines
635 B
C#
|
namespace Newsbot.Collector.Domain.Entities;
|
||
|
|
||
|
public class SourceEntity
|
||
|
{
|
||
|
public Guid Id { get; set; }
|
||
|
public string Site { get; set; } = "";
|
||
|
public string Name { get; set; } = "";
|
||
|
|
||
|
// Source use to define the worker to query with but moving to Type as it was not used really.
|
||
|
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; }
|
||
|
public string YoutubeId { get; set; } = "";
|
||
|
}
|