Add project files

This commit is contained in:
Sean Greenawalt 2025-05-10 05:16:40 -04:00
commit 8cf01ead74
Signed by: seang96
GPG key ID: 504F02B511005571
40 changed files with 3967 additions and 0 deletions

View file

@ -0,0 +1,21 @@
namespace StalwartSimpleLoginMiddleware.Models;
public class NewRandomAliasOutput
{
public DateTime CreationDate { get; set; }
public long CreationTimestamp { get; set; }
public string Email { get; set; }
public string Alias { get; set; }
public string Name { get; set; }
public bool Enabled { get; set; }
public int Id { get; set; }
public Mailbox Mailbox { get; set; }
public IEnumerable<Mailbox> Mailboxes { get; set; }
public string Note { get; set; }
}
public class Mailbox
{
public string Email { get; set; }
public int Id { get; set; }
}