mirror of
https://github.com/stijndcl/didier.git
synced 2026-06-27 00:19:55 +02:00
12 lines
220 B
Python
12 lines
220 B
Python
from attr import dataclass
|
|
|
|
|
|
@dataclass
|
|
class CustomCommand:
|
|
"""
|
|
Class to store custom commands being triggered
|
|
"""
|
|
id: int = None
|
|
name: str = None
|
|
response: str = None
|
|
alias_used: str = None
|