Files
2025-12-19 23:59:54 +01:00

11 lines
210 B
Python

from typing import Optional
from pydantic import BaseModel
class MealPlanEntry(BaseModel):
date: str
recipe_id: Optional[str] = None
title: Optional[str] = None
entry_type: str = "breakfast"