2024-09-15 18:26:08 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Meal struct {
|
|
|
|
Name string
|
|
|
|
Price string
|
|
|
|
Attributes string
|
|
|
|
}
|
2024-09-15 19:14:48 +00:00
|
|
|
|
|
|
|
func (m *Meal) SetMeal(name string, price string, attributes string) {
|
|
|
|
m.Name = name
|
|
|
|
m.Price = price
|
|
|
|
m.Attributes = attributes
|
|
|
|
}
|