Domain lookup mail template changed

This commit is contained in:
vfedosevich 2014-12-17 08:13:29 -08:00
parent eee7c9e925
commit df814794a2
4 changed files with 49 additions and 9 deletions

View file

@ -9,7 +9,8 @@ namespace WebsitePanel.Providers.DomainLookup
public class DnsRecordInfoChange
{
public string DnsServer { get; set; }
public DnsRecordInfo Record { get; set; }
public DnsRecordInfo OldRecord { get; set; }
public DnsRecordInfo NewRecord { get; set; }
public DomainDnsRecordStatuses Status { get; set; }
public DnsRecordType Type { get; set; }
}

View file

@ -9,6 +9,7 @@ namespace WebsitePanel.Providers.DomainLookup
{
NotChanged,
Removed,
Added
Added,
Updated
}
}