SI_InteligentnyWozekWidlowy/data/Order.py

8 lines
165 B
Python
Raw Normal View History

2022-03-24 20:43:53 +01:00
from data.JOB import JOB
class Order:
def __init__(self, id: int, money: int, job: JOB):
self.id = id
self.money = money
self.job = job