mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-06 18:35:18 -05:00
13 lines
203 B
Python
13 lines
203 B
Python
from typing import Optional
|
|
|
|
from fastapi_camelcase import CamelModel
|
|
|
|
|
|
class RecipeAsset(CamelModel):
|
|
name: str
|
|
icon: str
|
|
file_name: Optional[str]
|
|
|
|
class Config:
|
|
orm_mode = True
|