13 lines
478 B
C#
13 lines
478 B
C#
namespace Marco.Pms.Model.Mail
|
|
{
|
|
public class MailingList
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Body { get; set; } = string.Empty;
|
|
public string Subject { get; set; } = string.Empty; // Eamil Subject of recipient
|
|
public string Keywords { get; set; } = string.Empty; // Comma seprated list of variables in mail body
|
|
public Guid TenantId { get; set; }
|
|
}
|
|
}
|