merch-api/internal/merch/dto.go

29 lines
490 B
Go
Raw Normal View History

2026-03-01 22:14:43 +03:00
package merch
2026-03-04 17:02:11 +03:00
// Origins
2026-03-01 22:14:43 +03:00
type newOriginDTO struct {
Name string `json:"name"`
}
type originsDTO struct {
Origins []originItem `json:"origins"`
}
type originItem struct {
2026-03-04 17:02:11 +03:00
Id int64 `json:"id"`
2026-03-01 22:14:43 +03:00
Name string `json:"name"`
}
type deleteOriginDTO struct {
Name string `json:"name"`
}
2026-03-04 17:02:11 +03:00
// Merch
type newMerchDTO struct {
Name string `json:"name"`
Links []originLink `json:"links"`
}
type originLink struct {
Name string `json:"origin_name"`
Link string `json:"origin_link"`
}