demo/Models/NoticeItem.cs
2024-06-21 16:48:24 +08:00

11 lines
244 B
C#

using AntDesign.ProLayout;
namespace antblazorpro.Models
{
public class NoticeItem : NoticeIconData
{
public string Id { get; set; }
public string Type { get; set; }
public string Status { get; set; }
}
}