com.alicizax.unity.ui.exten.../Runtime/RecyclerView/Data/ISimpleViewData.cs

18 lines
317 B
C#
Raw Normal View History

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; }
}
}