11 lines
403 B
C#
11 lines
403 B
C#
namespace Marco.Pms.Model.Dtos.Mail
|
|
{
|
|
public class MailDetailsDto
|
|
{
|
|
public Guid ProjectId { get; set; }
|
|
public string Recipient { get; set; } = string.Empty; // Eamil Address of recipient
|
|
public string Schedule { get; set; } = string.Empty; // json object which includes when to send mail and at what interval
|
|
public Guid MailListId { get; set; }
|
|
}
|
|
}
|