14 lines
250 B
Python
14 lines
250 B
Python
"""
|
|
Pydantic models for <this module>
|
|
|
|
Models:
|
|
- List: Description
|
|
- Models: Description
|
|
"""
|
|
from src.schemas import CustomBaseModel
|
|
|
|
from src.control.constants import TimerState
|
|
|
|
|
|
class ControlTimerPutResponse(CustomBaseModel):
|
|
state: TimerState
|