mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
9351a35072
* docs: add cli for building demo structured file * docs: cli improvement * docs: generate demo page * fix: style of components page * docs: add prism to mack source code highlight * feat: add menu2json command for cli * fix: markdown highlight * feat: fetch menu data from cli output files * fix: cli * docs: add avatar demo * docs: add button demos * docs: add component-scope style * docs: fix style * docs: add badge demos * fix: rebase conflict * docs: refactor layout * docs: fix navigation * docs: fix rebase conflict * docs: add AntAffix for sider menu * docs: fix affix error * docs: fix rebase confilct
34 lines
673 B
C#
34 lines
673 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 Doc { 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; }
|
|
}
|
|
} |