mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
20 lines
364 B
C#
20 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign.Docs.Services
|
|
{
|
|
public class MoreProps
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public string Date { get; set; }
|
|
|
|
public string Img { get; set; }
|
|
|
|
public string Href { get; set; }
|
|
}
|
|
}
|