9 lines
115 B
Python
9 lines
115 B
Python
class Guid:
|
|
|
|
def __init__(self, val : str):
|
|
self.value = val
|
|
|
|
def get_value(self) -> str:
|
|
return self.value
|
|
|