blob: 6a2c32145a6c6e3a168d191d3639a89fd58183f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package model
type Common struct {
//Description string `json:"description"`
//Name string `json:"name"`
Symbol string `json:"symbol"`
}
type CommonType struct {
Type string `json:"type"`
}
|