14 lines
376 B
C#
14 lines
376 B
C#
using System.Net.Mail;
|
|
|
|
namespace HospitalContracts.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 List<Attachment> Attachments { get; set; } = new();
|
|
}
|
|
}
|