mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
13 lines
309 B
Python
13 lines
309 B
Python
|
from pydantic import Field
|
||
|
|
||
|
from ..base import FrigateBaseModel
|
||
|
|
||
|
__all__ = ["CameraUiConfig"]
|
||
|
|
||
|
|
||
|
class CameraUiConfig(FrigateBaseModel):
|
||
|
order: int = Field(default=0, title="Order of camera in UI.")
|
||
|
dashboard: bool = Field(
|
||
|
default=True, title="Show this camera in Frigate dashboard UI."
|
||
|
)
|