mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00
11 lines
133 B
Python
11 lines
133 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Plugin:
|
|
name: str
|
|
description: str
|
|
active: bool
|
|
settings: dict
|
|
|