31 lines
706 B
C#
31 lines
706 B
C#
using DomainObjects.Abstractions;
|
|
|
|
namespace DomainObjects.Documents.Sites {
|
|
|
|
public class Site : DomainObjectDocumentBase<Site> {
|
|
|
|
public string Name { get; set; }
|
|
|
|
public List<string> Hosts { get; set; }
|
|
|
|
public Address Address { get; set; }
|
|
|
|
public string PoweredBy { get; set; }
|
|
|
|
public MailboxConnectionSettings SmtpSettings { get; set; }
|
|
|
|
public MailboxConnectionSettings ImapSettings { get; set; }
|
|
|
|
public PassworRecoverySettings PassworRecoverySettings { get; set; }
|
|
|
|
public Site(string name, List<string> hosts) {
|
|
Name = name;
|
|
Hosts = hosts;
|
|
}
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|