12 lines
370 B
C#
12 lines
370 B
C#
|
namespace Contracts.BindingModels
|
|||
|
{
|
|||
|
public class MailSendInfoModel
|
|||
|
{
|
|||
|
public string MailAddress { get; set; } = string.Empty;
|
|||
|
public string Subject { get; set; } = string.Empty;
|
|||
|
public string Text { get; set; } = string.Empty;
|
|||
|
public byte[] Pdf { get; set; }
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|