11 lines
273 B
Go
11 lines
273 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package cloudns
|
|
|
|
type ZoneResponse struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Zone string `json:"zone"`
|
|
Status string `json:"status"`
|
|
}
|