SharpRSS/SharpRss/Models/FeedItemModel.cs

21 lines
555 B
C#
Raw Normal View History

using System;
namespace SharpRss.Models
{
public class FeedItemModel
{
2023-05-21 21:56:37 +02:00
public string Id { get; set; }
public string FeedId { get; set; }
2023-05-20 00:04:45 +02:00
public bool Read { get; set; }
public string Type { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Link { get; set; }
2023-05-21 21:56:37 +02:00
public DateTimeOffset LastUpdated { get; set; }
public DateTimeOffset? PublishingDate { get; set; }
public string Author { get; set; }
public string[] Categories { get; set; }
public string Content { get; set; }
}
}