5 lines
182 B
Python
5 lines
182 B
Python
from pydantic import BaseModel
|
|
from typing import Literal
|
|
|
|
class SettingsUpdate(BaseModel):
|
|
overlay_theme: Literal['dark-purple', 'bright-green', 'minimal-light', 'hacker-green'] |