using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/8/31 15:29:08
//Author
//Description Create
//----------------------------------------------------------------
namespace Muchinfo.MTPClient.Data.Enums
{
public enum NoticeReadStatus
{
///
/// 未读
///
NoneRead=0,
///
/// 已读
///
Read = 1,
}
///
/// 是否置顶
///
public enum NoticeTop
{
///
/// 不
///
UnTop=0,
///
/// 置顶
///
Top=1,
}
}