You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
166 B
Python
12 lines
166 B
Python
1 year ago
|
|
||
|
|
||
|
class Parm():
|
||
|
name = None
|
||
|
value = None
|
||
|
slot = None
|
||
|
index = None
|
||
|
type = None
|
||
|
size = None
|
||
|
desc = None
|
||
|
def __init__(self):
|
||
|
pass
|