mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-13 00:54:20 +01:00
15 lines
338 B
C#
15 lines
338 B
C#
|
using CodeHollow.FeedReader;
|
||
|
|
||
|
namespace WebSharpRSS.Models
|
||
|
{
|
||
|
public class FeedGuideItem : ISelectableGuideItem
|
||
|
{
|
||
|
public FeedGuideItem(Feed feed)
|
||
|
{
|
||
|
Feed = feed;
|
||
|
}
|
||
|
public readonly Feed Feed;
|
||
|
public bool IsSelected { get; set; }
|
||
|
public bool IsExpanded { get; set; }
|
||
|
}
|
||
|
}
|