chrly/lib/data/SignedTexturesResponse.go

15 lines
332 B
Go
Raw Normal View History

package data
type SignedTexturesResponse struct {
Id string `json:"id"`
Name string `json:"name"`
IsEly bool `json:"ely,omitempty"`
Props []Property `json:"properties"`
}
type Property struct {
Name string `json:"name"`
2017-04-01 15:16:25 +05:30
Signature string `json:"signature,omitempty"`
Value string `json:"value"`
}