2023-06-19 15:38:17 -07:00
|
|
|
namespace Newsbot.Collector.Domain.Entities;
|
|
|
|
|
|
|
|
public class ArticlesEntity
|
|
|
|
{
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid SourceId { get; set; }
|
2023-08-04 23:04:09 -07:00
|
|
|
public Guid AuthorId { get; set; }
|
2023-06-19 15:38:17 -07:00
|
|
|
public string Tags { get; set; } = "";
|
|
|
|
public string Title { get; set; } = "";
|
|
|
|
public string? Url { get; set; }
|
|
|
|
public DateTime PubDate { get; set; } = DateTime.Now;
|
|
|
|
public string Video { get; set; } = "";
|
|
|
|
public int VideoHeight { get; set; } = 0;
|
|
|
|
public int VideoWidth { get; set; } = 0;
|
|
|
|
public string Thumbnail { get; set; } = "";
|
|
|
|
public string Description { get; set; } = "";
|
|
|
|
public bool CodeIsRelease { get; set; }
|
|
|
|
public bool CodeIsCommit { get; set; }
|
|
|
|
}
|