SharpRSS/SharpRss/Models/FeedModel.cs

20 lines
572 B
C#
Raw Normal View History

2023-05-18 01:27:11 +02:00
using System;
2023-05-12 15:48:14 +02:00
namespace SharpRss.Models
{
public class FeedModel
2023-05-12 15:48:14 +02:00
{
2023-05-20 00:04:45 +02:00
public string FeedId { get; set; }
2023-05-20 00:35:43 +02:00
public string GroupId { get; set; }
2023-05-20 00:04:45 +02:00
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; }
2023-05-20 00:35:43 +02:00
public int TotalItems { get; set; }
public int TotalRead { get; set; }
2023-05-12 15:48:14 +02:00
}
}