mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 03:57:38 +08:00
12 lines
194 B
C#
12 lines
194 B
C#
namespace AntDesign.Docs
|
|
{
|
|
public class DocsFile
|
|
{
|
|
public int Order { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string Html { get; set; }
|
|
}
|
|
}
|