7 lines
172 B
Python
7 lines
172 B
Python
class PathMapping:
|
|
|
|
def __init__(self, source_pattern : str, destination_path : str):
|
|
|
|
self.source_pattern = source_pattern
|
|
self.destination_path = destination_path
|
|
|