namespace CarRepairShopDataModels { public interface IMessageInfoModel { string MessageId { get; } int? ClientId { get; } string SenderName { get; } DateTime DateDelivery { get; } string Subject { get; } string Body { get; } bool IsReaded { get; } string? ReplyMessageId { get; } bool IsReply { get; } } }