Files
swingmusic-extended/app/models/folder.py
T
2024-04-05 08:29:38 +03:00

11 lines
188 B
Python

from dataclasses import dataclass
@dataclass(slots=True, frozen=True)
class Folder:
name: str
path: str
is_sym: bool = False
trackcount: int = 0
foldercount: int = 0