SharpRSS/SharpRss/Models/FeedModel.cs

16 lines
351 B
C#
Raw Normal View History

2023-05-12 15:48:14 +02:00
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; }
}
}