создала ветку для 7 лабы, добавила интерфейс-модель для письма

This commit is contained in:
Елена Бакальская 2024-05-04 18:48:43 +04:00
parent 751bbbc3c5
commit ac7982f9be

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels
{
public interface IMessageInfoModel
{
string MessageId { get; }
int? ClientId { get; }
string SenderName { get; }
DateTime DateDelivery { get; }
string Subject { get; }
string Body { get; }
}
}