5 lines
124 B
Python
5 lines
124 B
Python
|
class Srodek:
|
||
|
def __init__(self, id, nazwa, typ):
|
||
|
self.id = id
|
||
|
self.nazwa = nazwa
|
||
|
self.typ = typ
|