PenetrationTestingScripts/dirs3arch/lib/core/Path.py

8 lines
218 B
Python

class Path(object):
def __init__(self, path=None, status=None, response=None):
self.path = path
self.status = status
self.response = response
def __str__(self):
return self.path