mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-28 13:05:26 -05:00
10 lines
134 B
Python
10 lines
134 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class RecipeNote(BaseModel):
|
|
title: str
|
|
text: str
|
|
|
|
class Config:
|
|
orm_mode = True
|