16 lines
443 B
C#
16 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WebsitePanel.Providers.DNS;
|
|
|
|
namespace WebsitePanel.Providers.DomainLookup
|
|
{
|
|
public class DnsRecordInfoChange
|
|
{
|
|
public string DnsServer { get; set; }
|
|
public DnsRecordInfo Record { get; set; }
|
|
public DomainDnsRecordStatuses Status { get; set; }
|
|
public DnsRecordType Type { get; set; }
|
|
}
|
|
}
|