mirror of
https://github.com/LeRoid-hub/Mensa-API.git
synced 2025-01-31 11:44:55 +00:00
15 lines
203 B
Go
15 lines
203 B
Go
package models
|
|
|
|
type Menu struct {
|
|
Name string
|
|
Meal []Meal
|
|
}
|
|
|
|
func (m *Menu) SetMenu(name string) {
|
|
m.Name = name
|
|
}
|
|
|
|
func (m *Menu) AddMeal(meal Meal) {
|
|
m.Meal = append(m.Meal, meal)
|
|
}
|