ant-design-blazor/site/Shared/DemoComponent.cs

47 lines
930 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AntDesign.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 string Cover { get; set; }
public List<DemoItem> DemoList { get; set; }
}
public class DemoItem
{
public decimal 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; }
2020-05-15 19:19:49 +08:00
public int? Iframe { get; set; }
public bool? Docs { get; set; }
2020-05-15 19:19:49 +08:00
public bool Debug { get; set; }
}
}