cardset.go 385 B

1234567891011121314
  1. package operate
  2. import (
  3. "encoding/json"
  4. )
  5. type CardSet struct {
  6. ID int64 `json:"id,omitempty"`
  7. Type string `json:"type,omitempty"`
  8. Value int64 `json:"value,omitempty"`
  9. Title string `json:"title,omitempty"`
  10. LongTitle string `json:"long_title,omitempty"`
  11. Content json.RawMessage `json:"content,omitempty"`
  12. }