Mensa-CLI/models/Meal.go

14 lines
227 B
Go
Raw Permalink Normal View History

2024-09-17 21:02:36 +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
}