WIP v0.5.0

This commit is contained in:
2026-02-11 17:44:51 +03:00
parent 2a030aa0d8
commit c4b827fb31

View File

@@ -107,6 +107,11 @@ type Gifts struct {
Gifts []Gift `json:"gifts"`
}
const (
OwnedGiftRegularType OwnedGiftType = "regular"
OwnedGiftUniqueType OwnedGiftType = "unique"
)
type OwnedGiftType string
type BaseOwnedGift struct {
Type OwnedGiftType `json:"type"`