api-entities/order/dto/order.go

9 lines
136 B
Go
Raw Permalink Normal View History

2024-12-06 13:24:56 +01:00
package order
type UpdateOrderStatusRequestDTO struct {
Status string `json:"status"`
}
type UpdateOrderStatusResponseDTO struct {
}