StableVersion4.3/HL_FristAidPlatform_Help/Model/T_Service_NoticeModel.cs

46 lines
1.0 KiB
C#

using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 消息
/// </summary>
public class T_Service_NoticeModel : T_Service_Notice
{
/// <summary>
/// 消息类型
/// </summary>
public string TypeName { get; set; }
/// <summary>
/// 阅读状态
/// </summary>
public int ReadState { get; set; }
/// <summary>
/// 阅读状态Case
/// </summary>
private string _readStateCase;
public string ReadStateCase
{
get
{
return _readStateCase == "0" ? "未读" : "已读";
}
set
{
_readStateCase = value;
}
}
/// <summary>
/// 首次阅读时间
/// </summary>
public string FirstReadingTime { get; set; }
/// <summary>
/// 阅读总数
/// </summary>
public int TotalReading { get; set; }
}
}