Add project files
This commit is contained in:
parent
4dafed3553
commit
8cf01ead74
40 changed files with 3967 additions and 0 deletions
21
StalwartSimpleLoginMiddleware/Models/NewRandomAliasOutput.cs
Normal file
21
StalwartSimpleLoginMiddleware/Models/NewRandomAliasOutput.cs
Normal 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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue