10 lines
199 B
Go
10 lines
199 B
Go
|
package model
|
||
|
|
||
|
type GoDaddyModel struct {
|
||
|
Type uint `json:"type"`
|
||
|
ApiHost string `json:"api_host"`
|
||
|
Key string `json:"key"`
|
||
|
Secret string `json:"secret"`
|
||
|
Host string `json:"host"`
|
||
|
}
|