mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-08 17:03:11 -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
|