|
|
|
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.Enums;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace AyCode.Interfaces.Messages
|
|
{
|
|
public interface INoticeBase : IEntityGuid, ITimeStampInfo, IMessageParticipants
|
|
{
|
|
string Message { get; }
|
|
}
|
|
}
|