21 lines
No EOL
597 B
C#
21 lines
No EOL
597 B
C#
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; }
|
|
} |