mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00
10 lines
158 B
Python
10 lines
158 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(slots=True, frozen=True)
|
|
class Folder:
|
|
name: str
|
|
path: str
|
|
is_sym: bool = False
|
|
count: int = 0
|