SGGL_SHJ/SGGL/Model/APIItem/NoticeOutput.cs

16 lines
434 B
C#
Raw Normal View History

2024-12-25 15:43:38 +08:00
using System;
namespace Model
{
[Serializable]
public class NoticeOutput
{
public string NoticeId { get; set; }
public string NoticeCode { get; set; }
public string NoticeTitle { get; set; }
public string MainContent { get; set; }
public string CompileManName { get; set; }
public DateTime? CompileDate { get; set; }
public string AttachUrl { get; set; }
}
}