Mx and ns scheduled tasks fixes
This commit is contained in:
parent
5c239f0933
commit
133de4b747
8 changed files with 197 additions and 39 deletions
|
@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using WebsitePanel.Providers.DNS;
|
||||
|
||||
namespace WebsitePanel.Providers.DomainLookup
|
||||
{
|
||||
|
@ -10,5 +11,6 @@ namespace WebsitePanel.Providers.DomainLookup
|
|||
public DnsRecordInfo DbRecord { get; set; }
|
||||
public DnsRecordInfo DnsRecord { get; set; }
|
||||
public DomainDnsRecordStatuses Status { get; set; }
|
||||
public DnsRecordType Type { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.DomainLookup
|
||||
{
|
||||
public class ScheduleTaskEmailTemplate
|
||||
{
|
||||
public string TaskId { get; set; }
|
||||
public string ParameterID { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
|
@ -90,6 +90,7 @@
|
|||
<Compile Include="DomainLookup\DomainDnsRecordCompare.cs" />
|
||||
<Compile Include="DomainLookup\DomainDnsRecordsChanges.cs" />
|
||||
<Compile Include="DomainLookup\DomainDnsRecordStatuses.cs" />
|
||||
<Compile Include="DomainLookup\ScheduleTaskEmailTemplate.cs" />
|
||||
<Compile Include="EnterpriseStorage\IEnterpriseStorage.cs" />
|
||||
<Compile Include="HeliconZoo\IHeliconZooServer.cs" />
|
||||
<Compile Include="HostedSolution\BaseReport.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue