using System; using System.Collections.Generic; using System.Text; namespace SharpRss.Models { /// /// To store and load data from file/database /// public class CategoryModel { public string Name { get; set; } public HashSet Feeds { get; set; } } }