27 lines
537 B
C#
27 lines
537 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace RBLFeederCommon.Models.RssFeed;
|
|
|
|
public class FeedVM
|
|
{
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonProperty("imgUrl")]
|
|
public string ImgUrl { get; set; }
|
|
|
|
[JsonProperty("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonProperty("pubDate")]
|
|
public DateTime? PubDate { get; set; }
|
|
|
|
[JsonProperty("link")]
|
|
public string Link { get; set; }
|
|
|
|
[JsonProperty("source")]
|
|
public int Source { get; set; }
|
|
} |