Mensa-CLI/models/Meal.go

14 lines
240 B
Go
Raw Permalink Normal View History

2024-09-20 21:31:19 +00:00
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
}