mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
41 lines
800 B
C#
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; }
|
|
}
|
|
}
|