2023-05-19 14:40:57 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace SharpRss.Models
|
|
|
|
|
{
|
|
|
|
|
public class FeedItemModel
|
|
|
|
|
{
|
2023-05-22 15:55:21 +02:00
|
|
|
|
public string Id { get; set; } = string.Empty;
|
2023-05-22 19:09:01 +02:00
|
|
|
|
public string FeedId { get; set; } = string.Empty;
|
2023-05-20 00:04:45 +02:00
|
|
|
|
public bool Read { get; set; }
|
2023-05-22 13:26:27 +02:00
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
public string Link { get; set; } = string.Empty;
|
2023-05-21 21:56:37 +02:00
|
|
|
|
public DateTimeOffset LastUpdated { get; set; }
|
|
|
|
|
public DateTimeOffset? PublishingDate { get; set; }
|
2023-05-22 13:26:27 +02:00
|
|
|
|
public string Author { get; set; } = string.Empty;
|
|
|
|
|
public string[]? Categories { get; set; }
|
|
|
|
|
public string Content { get; set; } = string.Empty;
|
2023-05-19 14:40:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|