You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
package operate |
|
|
|
import ( |
|
"encoding/json" |
|
) |
|
|
|
type CardSet struct { |
|
ID int64 `json:"id,omitempty"` |
|
Type string `json:"type,omitempty"` |
|
Value int64 `json:"value,omitempty"` |
|
Title string `json:"title,omitempty"` |
|
LongTitle string `json:"long_title,omitempty"` |
|
Content json.RawMessage `json:"content,omitempty"` |
|
}
|
|
|