using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CollaborativePlatformProject.CollaborationPlatform.Entity
{
///
///
/// ⽂件名(File Name): 通知公告实体类.cs
///
/// 描述(Description):
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Sun Zheng Ji
///
/// ⽇期(Create Date):
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改⽇期:
/// 修改理由:
///
///
public class NotificationAnnouncement
{
///
/// 消息类别
///
public string MessageCategory { get; set; }
///
/// 按钮名称
///
public string BtnName { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 具体内容
///
public string SpecificContent { get; set; }
}
}