12 lines
253 B
Python
12 lines
253 B
Python
class BrickCounter(object):
|
|
name: str
|
|
table: str
|
|
icon: str
|
|
count: int
|
|
|
|
def __init__(self, name: str, table: str, /, icon: str = ''):
|
|
self.name = name
|
|
self.table = table
|
|
self.icon = icon
|
|
self.count = 0
|