style.go 290 B

123456789101112131415161718192021
  1. package pgc
  2. // ParamStyle .
  3. type ParamStyle struct {
  4. Name string `json:"name"`
  5. StyleID int `json:"style_id"`
  6. }
  7. // StyleRes .
  8. type StyleRes struct {
  9. ID int
  10. Style string
  11. Category int
  12. }
  13. // LabelRes .
  14. type LabelRes struct {
  15. Name string
  16. Value int
  17. Category int
  18. }