MailQueue

This commit is contained in:
2026-01-12 08:49:18 +01:00
parent 941e24551c
commit 936a08cc76
15 changed files with 1571 additions and 2 deletions

View 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
}