v0.5.0 #8

Merged
ScuroNeko merged 17 commits from dev into main 2026-02-12 11:51:02 +03:00
Showing only changes of commit c4b827fb31 - Show all commits

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"`