mirror of
https://forgejo.merr.is/annika/isl-api.git
synced 2025-12-11 11:02:03 -05:00
19 lines
544 B
Go
19 lines
544 B
Go
package Types
|
|
|
|
import (
|
|
"github.com/gofrs/uuid"
|
|
uuid "github.com/jackc/pgtype/ext/gofrs-uuid"
|
|
)
|
|
|
|
type PowerItem struct {
|
|
ID uuid.UUID `json:"id"`
|
|
ItemType int32 `json:"itemType"`
|
|
IconUrl string `json:"iconUrl"`
|
|
ItemName string `json:"itemName"`
|
|
MinItemPower int32 `json:"minItemPower"`
|
|
MaxItemPower int32 `json:"maxItemPower"`
|
|
Rarity int32 `json:"rarity"`
|
|
Origin string `json:"origin"`
|
|
Tooltip string `json:"tooltip"`
|
|
IsEventItem bool `json:"isEventItem"`
|
|
}
|