dyndns/hetzner/model.go
2025-03-23 11:55:06 +01:00

15 lines
264 B
Go

package hetzner
type Zone = struct {
Id string `json:"id"`
}
type Record = struct {
Id string `json:"id"`
ZoneId string `json:"zone_id"`
Type string `json:"type"`
Name string `json:"name"`
Value string `json:"value"`
TTL int `json:"ttl"`
}