fix: rename dish to meal

This commit is contained in:
2025-07-20 19:56:25 +02:00
parent da2d507629
commit 4e60b4e69f
4 changed files with 33 additions and 33 deletions

21
model/external/stwbremen/meal.go vendored Normal file
View File

@ -0,0 +1,21 @@
package stwbremen
type Meal struct {
Title string `json:"title"`
Ingredients []Ingredient `json:"ingredients"`
Prices []Price `json:"prices"`
Location string `json:"location"`
Date string `json:"date"` // YYYY-MM-DD
Counter string `json:"counter"`
Tags string `json:"mealadds"`
}
type Ingredient struct {
Label string `json:"label"`
Additionals []string `json:"additionals"`
}
type Price struct {
Label string `json:"label"`
Price string `json:"price"`
}