SharpRSS/SharpRss/Models/CategoryModel.cs

16 lines
326 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
{
/// <summary>
/// To store and load data from file/database
/// </summary>
public class CategoryModel
{
public string Name { get; set; }
public HashSet<FeedModel> Feeds { get; set; }
}
}