13 lines
270 B
C#
13 lines
270 B
C#
using System;
|
|
|
|
namespace Disco.Services.Interop.DNS
|
|
{
|
|
public class TxtDnsRecord : DnsRecord
|
|
{
|
|
public TxtDnsRecord(string name, TimeSpan timeToLive, string text)
|
|
: base(name, DnsRecordType.Txt, timeToLive, text)
|
|
{
|
|
}
|
|
}
|
|
}
|