using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Muchinfo.MTPClient.Data.Model
{
///
/// 通知查询
///
public class NoticeInfoModel
{
#region 字段备注
//NoticeId id uint32
//NoticeTitle 标题 string
//NoticeContent 内容 string
//NoticeType 类型 uint32
#endregion
private uint _NoticeId = uint.MaxValue;
///
/// 通知id
///
public uint NoticeId
{
get { return _NoticeId; }
set { _NoticeId = value; }
}
private string _NoticeTitle = "";
///
/// 标题
///
public string NoticeTitle
{
get { return _NoticeTitle; }
set { _NoticeTitle = value; }
}
private string _NoticeContent = "";
///
/// 内容
///
public string NoticeContent
{
get { return _NoticeContent; }
set { _NoticeContent = value; }
}
private uint _NoticeType = uint.MaxValue;
///
/// 类型
///
public uint NoticeType
{
get { return _NoticeType; }
set { _NoticeType = value; }
}
}
}