mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
14 lines
425 B
C#
14 lines
425 B
C#
namespace Xzy.KnowledgeBase.Models
|
|
{
|
|
public class NoticeType
|
|
{
|
|
public string Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Logo { get; set; }
|
|
public string Description { get; set; }
|
|
public string UpdatedAt { get; set; }
|
|
public string Member { get; set; }
|
|
public string Href { get; set; }
|
|
public string MemberLink { get; set; }
|
|
}
|
|
} |