ant-design-blazor/site/Shared/DemoComponent.cs
2020-05-15 19:19:49 +08:00

41 lines
800 B
C#

using System.Collections.Generic;
namespace AntBlazor.Docs
{
public class DemoComponent
{
public string Title { get; set; }
public string SubTitle { get; set; }
public string Type { get; set; }
public string Desc { get; set; }
public string ApiDoc { get; set; }
public int? Cols { get; set; }
public List<DemoItem> DemoList { get; set; }
}
public class DemoItem
{
public int Order { get; set; }
public string Name { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Code { get; set; }
public string Type { get; set; }
public string Style { get; set; }
public bool Debug { get; set; }
}
}