Mensa-CLI/models/Meal.go
2024-09-20 23:31:19 +02:00

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
}