12 lines
395 B
C#
12 lines
395 B
C#
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; }
|
|
}
|
|
}
|