SharpRSS/SharpRss/Models/FeedModel.cs
Max Holleman fcda58d30f Push
2023-05-12 15:48:14 +02:00

16 lines
351 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SharpRss.Models
{
public class FeedModel
{
public string Type { get; set; }
public string Text { get; set; }
public string Title { get; set; }
public string XmlUrl { get; set; }
public string HtmlUrl { get; set; }
}
}