21 lines
470 B
C#
21 lines
470 B
C#
using StandManager.Domain.Entita.Base;
|
|
|
|
namespace StandManager.Domain.Entita;
|
|
|
|
public class MailQueue : EntitaBase
|
|
{
|
|
public string Subject { get; set; }
|
|
public string Body { get; set; }
|
|
public string ToList { get; set; }
|
|
public string? Args { get; set; }
|
|
public MailFrom From { get; set; }
|
|
public bool Sent { get; set; }
|
|
public string? Error { get; set; }
|
|
}
|
|
|
|
public enum MailFrom
|
|
{
|
|
Invitation = 0,
|
|
Confirmation,
|
|
Registrazione
|
|
} |