mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-08-08 13:51:01 +02: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)
|