merch-api/internal/merch/dto.go

17 lines
276 B
Go
Raw Normal View History

2026-03-01 22:14:43 +03:00
package merch
type newOriginDTO struct {
Name string `json:"name"`
}
type originsDTO struct {
Origins []originItem `json:"origins"`
}
type originItem struct {
Id uint `json:"id"`
Name string `json:"name"`
}
type deleteOriginDTO struct {
Name string `json:"name"`
}