Files
ISEbd-22_Nikolaeva_Y.A._Sof…/SoftwareInstallation/SoftwareInstallationDataModels/Models/IMessageInfoModel.cs
2023-05-24 14:11:43 +04:00

13 lines
309 B
C#

namespace SoftwareInstallationDataModels.Models
{
public interface IMessageInfoModel : IId
{
string MessageId { get; }
int? ClientId { get; }
string SenderName { get; }
DateTime DateDelivery { get; }
string Subject { get; }
string Body { get; }
}
}