25 lines
448 B
C#
Raw Normal View History

2024-05-18 21:35:37 +04:00
using SushiBarDataModels;
using System;
2024-05-16 18:55:15 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-18 21:35:37 +04:00
namespace SushiBarDataModels.Models
2024-05-16 18:55:15 +04:00
{
2024-05-18 21:35:37 +04:00
public interface IMessageInfoModel : IId
2024-05-16 18:55:15 +04:00
{
string MessageId { get; }
int? ClientId { get; }
string SenderName { get; }
DateTime DateDelivery { get; }
string Subject { get; }
string Body { get; }
}
}