14 lines
331 B
C#
14 lines
331 B
C#
|
namespace ComputerHardwareStoreContracts.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 byte[] File { get; set; } = Array.Empty<byte>();
|
|||
|
}
|
|||
|
}
|