SharpRSS/SharpRss/Models/FeedModel.cs
2023-06-02 10:56:30 +02:00

24 lines
840 B
C#

using System;
namespace SharpRss.Models
{
public class FeedModel
{
public FeedModel()
{
}
public CategoryModel? Group { get; set; }
public string Url { get; set; }
public string? Title { get; set; } = string.Empty;
public string? GroupId { get; set; } = string.Empty;
public string? FeedType { get; set; } = string.Empty;
public string? Description { get; set; } = string.Empty;
public string? Language { get; set; } = string.Empty;
public string? Copyright { get; set; } = string.Empty;
public DateTimeOffset? DateAdded { get; set; }
public DateTimeOffset? LastUpdated { get; set; }
public string? ImageUrl { get; set; } = string.Empty;
public string? OriginalDocument { get; set; } = string.Empty;
}
}