5 lines
179 B
Python
5 lines
179 B
Python
class Job:
|
|
def __init__(self, size, creation_time):
|
|
# Jobs have a size and creation_time parameter
|
|
self.size = size
|
|
self.creation_time = creation_time
|