mirror of
https://github.com/netchx/netch.git
synced 2026-03-28 18:59:46 +08:00
9 lines
105 B
C#
9 lines
105 B
C#
namespace DNS.Protocol
|
|
{
|
|
public enum RecordClass
|
|
{
|
|
IN = 1,
|
|
ANY = 255,
|
|
}
|
|
}
|