mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
13 lines
196 B
C#
13 lines
196 B
C#
|
|
// Stuff records are made of
|
||
|
|
|
||
|
|
namespace Heijden.DNS
|
||
|
|
{
|
||
|
|
public abstract class Record
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The Resource Record this RDATA record belongs to
|
||
|
|
/// </summary>
|
||
|
|
public RR RR;
|
||
|
|
}
|
||
|
|
}
|