mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 19:55:40 +00:00
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 = ""
|