using System; using System.Collections.Generic; using System.Text; namespace SharpRss.Models { public class FeedItemModel { /// /// Last time the item is fetched. /// public DateTime LastUpdated { get; set; } /// /// The feed in which the item is part of. /// public string FeedId { get; set; } /// /// If the item is read. /// 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; } public DateTime? PublishingDate { get; set; } public string Author { get; set; } public string Id { get; set; } public string[] Categories { get; set; } public string Content { get; set; } } }