18 lines
317 B
C#
18 lines
317 B
C#
namespace AlicizaX.UI
|
|
{
|
|
public interface ISimpleViewData
|
|
{
|
|
}
|
|
|
|
public interface IMixedViewData : ISimpleViewData
|
|
{
|
|
string TemplateName { get; set; }
|
|
}
|
|
|
|
public interface IGroupViewData : IMixedViewData
|
|
{
|
|
bool Expanded { get; set; }
|
|
int Type { get; set; }
|
|
}
|
|
}
|