mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-18 14:44:21 +01:00
14 lines
365 B
Python
14 lines
365 B
Python
|
|
|
|
# Basic appointment structure
|
|
class Appointment:
|
|
def __init__(self, locator, start_time, end_time, dispute_delta, encrypted_blob, cypher):
|
|
self.locator = locator
|
|
self.start_time = start_time
|
|
self.end_time = end_time
|
|
self.dispute_delta = dispute_delta
|
|
self.encrypted_blob = encrypted_blob
|
|
self.cipher = cypher
|
|
|
|
|