using SharpRss.Models; namespace WebSharpRSS.Models { public class CategoryItem : CategoryModel, ISelectableGuideItem { public CategoryItem(CategoryModel model) { Name = model.Name; Feeds = model.Feeds; } public bool IsSelected { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public bool IsExpanded { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } } }