8 lines
146 B
Python
8 lines
146 B
Python
|
|
|
|
class Result:
|
|
def __init__(self, action, target):
|
|
self.action = action
|
|
self.target = target
|
|
self.status = 'pending'
|