You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
709 B
35 lines
709 B
using System;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Entities;
|
|
using Win_in.Sfs.Shared.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Message.Domain;
|
|
|
|
public abstract class MessageBase : SfsAggregateRootBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 消息标题
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 内容
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息级别
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public EnumMessageLevel MessageLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送时间
|
|
/// </summary>
|
|
[IgnoreUpdate]
|
|
public DateTime SendTime { get; set; }
|
|
|
|
}
|
|
|