10 lines
170 B
Python
10 lines
170 B
Python
class Tool:
|
|
id = 0
|
|
name = ""
|
|
typeid = 0
|
|
|
|
def __init__(self, id, name, typeid):
|
|
self.id = id
|
|
self.name = name
|
|
self.typeid = typeid
|