mirror of
https://github.com/LeRoid-hub/Mensa-CLI.git
synced 2025-01-31 11:44:56 +00:00
14 lines
227 B
Go
14 lines
227 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
|
||
|
}
|