mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
25 lines
301 B
Go
25 lines
301 B
Go
package zone
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type ZoneInfoBase struct {
|
|
DateUpdated time.Time
|
|
Id int64
|
|
Name string
|
|
Public bool
|
|
Version int64
|
|
}
|
|
|
|
type ZoneInfoExtra struct {
|
|
Domains int64
|
|
Owner string
|
|
Versions []int64
|
|
}
|
|
|
|
type ZoneInfo struct {
|
|
*ZoneInfoBase
|
|
*ZoneInfoExtra
|
|
}
|