Mensa-API/models/Meal.go

14 lines
240 B
Go
Raw Permalink Normal View History

2024-09-20 21:18:45 +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
}