8 lines
165 B
Python
8 lines
165 B
Python
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 |