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.
19 lines
443 B
19 lines
443 B
package model |
|
|
|
// PendantInfo is. |
|
type PendantInfo struct { |
|
Pid int `json:"pid"` |
|
Name string `json:"name"` |
|
Image string `json:"image"` |
|
Expire int `json:"expire"` |
|
} |
|
|
|
// NameplateInfo is. |
|
type NameplateInfo struct { |
|
Nid int `json:"nid"` |
|
Name string `json:"name"` |
|
Image string `json:"image"` |
|
ImageSmall string `json:"image_small"` |
|
Level string `json:"level"` |
|
Condition string `json:"condition"` |
|
}
|
|
|