Files
KotoPad/modules/padslist/model.py
BarsTiger 4213b7333d Added saving and filling buttons from file.
TODO: Fix too long names and add functionality that removes buttons that are removed from list
2022-11-13 23:17:48 +02:00

11 lines
224 B
Python

from dataclasses import dataclass
from dataclasses_json import dataclass_json
from typing import Dict
@dataclass_json
@dataclass(frozen=True)
class PadsModel:
first_pads: Dict[str, str]
second_pads: Dict[str, str]