mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
e3ec9db989
+ break models into separate files + same for the utils and setup
11 lines
184 B
Python
11 lines
184 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(slots=True, frozen=True)
|
|
class Folder:
|
|
name: str
|
|
path: str
|
|
has_tracks: bool
|
|
is_sym: bool = False
|
|
path_hash: str = ""
|