demo/Models/NoticeItem.cs

11 lines
244 B
C#
Raw Normal View History

2024-06-21 16:48:24 +08:00
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; }
}
}