mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-30 11:23:16 -04:00
19 lines
361 B
Go
19 lines
361 B
Go
package nmdata
|
|
|
|
// SimpleRecord is the slim twin of dns.SimpleRecord.
|
|
type SimpleRecord struct {
|
|
Name string
|
|
Type int
|
|
Class string
|
|
TTL int
|
|
RData string
|
|
}
|
|
|
|
// CustomZone is the slim twin of dns.CustomZone.
|
|
type CustomZone struct {
|
|
Domain string
|
|
Records []SimpleRecord
|
|
SearchDomainDisabled bool
|
|
NonAuthoritative bool
|
|
}
|