18 lines
443 B
C#
18 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AIMS.PublicUI.Model
|
|
{
|
|
public class Notice
|
|
{
|
|
public int Id { get; set; }
|
|
public string Contents { get; set; }
|
|
public string SendState { get; set; }
|
|
public string OperatorNo { get; set; }
|
|
public string OperatorName { get; set; }
|
|
public DateTime OperateDate { get; set; }
|
|
}
|
|
}
|