MailQueue
This commit is contained in:
20
StandManager.Domain/Entita/MailQueue.cs
Normal file
20
StandManager.Domain/Entita/MailQueue.cs
Normal file
@ -0,0 +1,20 @@
|
||||
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 = 1
|
||||
}
|
||||
Reference in New Issue
Block a user