mirror of
https://github.com/elyby/chrly.git
synced 2024-12-02 11:40:56 +05:30
15 lines
322 B
Go
15 lines
322 B
Go
|
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"`
|
||
|
Signature string `json:"signature"`
|
||
|
Value string `json:"value"`
|
||
|
}
|