10 lines
170 B
Python
10 lines
170 B
Python
from dataclasses import dataclass
|
|
from dataclasses_json import dataclass_json
|
|
|
|
|
|
@dataclass_json
|
|
@dataclass(frozen=True)
|
|
class ConfigModel:
|
|
theme: str
|
|
volume: int
|