This commit is contained in:
Kenta420 2024-01-25 16:54:57 +07:00
parent 5cf0a8b761
commit 28cdbbc4f9
5 changed files with 84 additions and 1 deletions

View file

@ -82,3 +82,12 @@ type RecipeDetailMatListRequest struct {
type RecipeDetailMatListResponse struct {
Result []RecipeDetailMat `json:"result"`
}
type GetAllRecipeRequest struct {
Filename string `json:"filename"`
Country string `json:"country"`
}
type GetAllRecipeResponse struct {
Result []RecipeOverview `json:"result"`
}