merch update method refactor

This commit is contained in:
nquidox 2025-10-01 11:00:39 +03:00
parent 7dd4a6830e
commit a4097706de
5 changed files with 44 additions and 32 deletions

View file

@ -46,3 +46,10 @@ type PricesResponse struct {
MerchUuid string `json:"merch_uuid"`
Origins []OriginWithPrices `json:"origins"`
}
type UpdateMerchDTO struct {
MerchUuid string `json:"merch_uuid"`
Name string `json:"name"`
Origin string `json:"origin"`
Link string `json:"link"`
}