mirror of
https://github.com/LeRoid-hub/Mensa-API.git
synced 2025-01-31 11:44:55 +00:00
14 lines
240 B
Go
14 lines
240 B
Go
package models
|
|
|
|
type Meal struct {
|
|
Name string
|
|
Price string
|
|
Attributes string
|
|
}
|
|
|
|
func (m *Meal) SetMeal(name string, price string, attributes string) {
|
|
m.Name = name
|
|
m.Price = price
|
|
m.Attributes = attributes
|
|
}
|