mirror of https://github.com/stijndcl/didier
13 lines
220 B
Python
13 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
|