Mx and ns scheduled tasks fixes

This commit is contained in:
vfedosevich 2014-11-19 05:45:10 -08:00
parent 5c239f0933
commit 133de4b747
8 changed files with 197 additions and 39 deletions

View file

@ -9,13 +9,11 @@ namespace WebsitePanel.Providers.DomainLookup
{
public string Domain { get; set; }
public List<DomainDnsRecordsChanges> MxChanges { get; set; }
public List<DomainDnsRecordsChanges> NsChanges { get; set; }
public List<DomainDnsRecordsChanges> DnsChanges { get; set; }
public DomainChanges()
{
MxChanges = new List<DomainDnsRecordsChanges>();
NsChanges = new List<DomainDnsRecordsChanges>();
DnsChanges = new List<DomainDnsRecordsChanges>();
}
}
}