1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Files
stackexchange-dnscontrol/vendor/github.com/prasmussen/gandi-api/domain/zone/structs.go
2020-05-30 11:06:13 -04:00

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
}