package dto // ThirdPartyArtifactDTO represents an artifact from the third-party API. type ThirdPartyArtifactDTO struct { ID string `json:"_id"` Name string `json:"name"` Code string `json:"code"` Rarity int `json:"rarity"` Exclusive string `json:"exclusive"` AtkBase int `json:"atk_base"` AtkMax int `json:"atk_max"` HPBase int `json:"hp_base"` HPMax int `json:"hp_max"` SkillDesc string `json:"skill_desc"` SkillDescMax string `json:"skill_desc_max"` } // ThirdPartyHeroDTO represents a hero from the third-party API. // Note: This is a placeholder structure. Adjust it according to the actual API response. type ThirdPartyHeroDTO struct { Code string `json:"code"` Name string `json:"name"` Rarity int `json:"rarity"` Attribute string `json:"attribute"` Role string `json:"role"` }