mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-02-23 00:18:31 +01:00
6 lines
136 B
Python
6 lines
136 B
Python
|
from pydantic import BaseModel, Field
|
||
|
|
||
|
|
||
|
class ExportRenameBody(BaseModel):
|
||
|
name: str = Field(title="Friendly name", max_length=256)
|