BrickTracker/bricktracker/sql_counter.py

12 lines
256 B
Python
Raw Normal View History

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