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