11 lines
325 B
C#
11 lines
325 B
C#
namespace Marco.Pms.Model.Dtos.Mail
|
|
{
|
|
public class MailTemeplateDto
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Body { get; set; } = string.Empty;
|
|
public string Subject { get; set; } = string.Empty;
|
|
public string Keywords { get; set; } = string.Empty;
|
|
}
|
|
}
|