diff --git a/internal/merch/dto.go b/internal/merch/dto.go index 21e6d72..103db31 100644 --- a/internal/merch/dto.go +++ b/internal/merch/dto.go @@ -46,6 +46,18 @@ type extraDataDTO struct { Links []originLink `json:"links"` } +type ListResponse struct { + MerchUuid string `json:"merch_uuid"` + Name string `json:"name"` + Labels []string `json:"labels,omitempty"` +} + +type getMerchInternal struct { + Id int64 `json:"id"` + MerchUuid string `json:"merch_uuid"` + Name string `json:"name"` +} + // prices dtos type PriceEntry struct { CreatedAt int64 `json:"created_at"`