16 lines
311 B
C#
16 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace skyscraper5.DNS.Protocol.ResourceRecords
|
|
{
|
|
public interface IResourceRecord : IMessageEntry
|
|
{
|
|
TimeSpan TimeToLive { get; }
|
|
int DataLength { get; }
|
|
byte[] Data { get; }
|
|
}
|
|
}
|