10 lines
287 B
C#
10 lines
287 B
C#
|
namespace FishFactoryContracts.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;
|
|||
|
}
|
|||
|
}
|