From ac879ba4b0cd228c3153c279620e17ae96d1e838 Mon Sep 17 00:00:00 2001 From: nquidox Date: Fri, 13 Mar 2026 16:51:04 +0300 Subject: [PATCH] new dto-s --- internal/merch/dto.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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"`