NewSoulParam.go 394 Bytes
Newer Older
Ford committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package models

type NewSoulParam struct {
	Auth    string `json:"auth"`
	Name    string `json:"name"`
	Gend    string `json:"gend"`
	Mantra  string `json:"mantra"`
	Trait   string `json:"trait"`
	BgInfo  string `json:"bgInfo"`
	AppInfo string `json:"appInfo"`
	IQ      int    `json:"IQ"`
}

type AppInfo struct {
	AppName          string `json:"name"`
	UserInfoTemplate string `json:"data"`
}