mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-13 00:54:20 +01:00
8 lines
176 B
C#
8 lines
176 B
C#
namespace WebSharpRSS.Models
|
|
{
|
|
public interface ISelectableGuideItem
|
|
{
|
|
public bool IsSelected { get; set; }
|
|
public bool IsExpanded { get; set; }
|
|
}
|
|
} |