20 lines
618 B
C#
20 lines
618 B
C#
|
namespace jtom38.Newsbot.Domain.Models.Collector;
|
||
|
|
||
|
public class ArticleDetailsDto
|
||
|
{
|
||
|
public Guid ID { get; set; }
|
||
|
public string[]? Tags { get; set; }
|
||
|
public string? Title { get; set; }
|
||
|
public string? Url { get; set; }
|
||
|
public DateTime PubDate { get; set; }
|
||
|
public string? Video { get; set; }
|
||
|
public int VideoHeight { get; set; }
|
||
|
public int VideoWidth { get; set; }
|
||
|
public string? Thumbnail { get; set; }
|
||
|
public string? Description { get; set; }
|
||
|
public string? AuthorName { get; set; }
|
||
|
public string? AuthorImage { get; set; }
|
||
|
|
||
|
public SourceDto? Source { get; set; }
|
||
|
|
||
|
}
|