Mensa-API/models/Menu.go

15 lines
189 B
Go
Raw Normal View History

2024-09-15 18:26:08 +00:00
package models
type Menu struct {
Name string
Meal []Meal
}
2024-09-15 19:14:48 +00:00
func (m *Menu) SetMenu(name string) {
m.Name = name
}
func (m *Menu) AddMeal(meal Meal) {
m.Meal = append(m.Meal, meal)
}