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

16 lines
326 B
C#

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; }
}
}