using System; namespace SharpRss.Models { public class FeedModel { public string FeedId { get; set; } public string GroupId { get; set; } public string FeedType { get; set; } public string FeedUrl { get; set; } public string Description { get; set; } public string Language { get; set; } public string Copyright { get; set; } public DateTime LastUpdated { get; set; } public string ImageUrl { get; set; } public int TotalItems { get; set; } public int TotalRead { get; set; } } }