12 lines
251 B
Go
12 lines
251 B
Go
package dto
|
|
|
|
type NewFoodItemDTO struct {
|
|
Title string `json:"title" binding:"required"`
|
|
Description string `json:"description" binding:"required"`
|
|
}
|
|
|
|
type FoodItemDTO struct {
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
}
|