mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +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
|
|
|