10 lines
185 B
C#
10 lines
185 B
C#
namespace Intromat.Interfaces
|
|
{
|
|
public interface ITreeItem
|
|
{
|
|
string Name { get; }
|
|
bool IsExpanded { get; set; }
|
|
bool IsSelected { get; set; }
|
|
}
|
|
}
|