usersuit.go 443 B

12345678910111213141516171819
  1. package model
  2. // PendantInfo is.
  3. type PendantInfo struct {
  4. Pid int `json:"pid"`
  5. Name string `json:"name"`
  6. Image string `json:"image"`
  7. Expire int `json:"expire"`
  8. }
  9. // NameplateInfo is.
  10. type NameplateInfo struct {
  11. Nid int `json:"nid"`
  12. Name string `json:"name"`
  13. Image string `json:"image"`
  14. ImageSmall string `json:"image_small"`
  15. Level string `json:"level"`
  16. Condition string `json:"condition"`
  17. }