using DomainObjects.Abstractions; namespace DomainObjects.Documents.Sites; public class PassworRecoverySettings : DomainObjectBase { public MailboxConnectionSettings SmtpSettings { get; set; } /// /// DomainKeys Identified Mail (DKIM) is an email authentication method designed to detect forged sender addresses in email (email spoofing),
/// a technique often used in phishing and email spam. ///
public DkimSettings DkimSettings { get; set; } public Guid TemplateId { get; set; } public Contact Email { get; set; } public string Subject { get; set; } public List Paragraphs { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } }