PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/BindingModels/MailSendInfoBindingModel.cs

12 lines
395 B
C#
Raw Permalink Normal View History

2023-06-19 09:12:18 +04:00
namespace CanteenContracts.BindingModels
{
public class MailSendInfoBindingModel
{
public string MailAddress { get; set; } = string.Empty;
public string Subject { get; set; } = string.Empty;
public string Text { get; set; } = string.Empty;
public string Path { get; set; } = string.Empty;
public ReportBindingModel report { get; set; }
}
}