mirror of
https://github.com/sartography/uva-covid19-testing-communicator.git
synced 2025-02-24 12:58:05 +00:00
6 lines
120 B
Python
6 lines
120 B
Python
|
|
class User:
|
|
def __init__(self, uid, display_name):
|
|
self.uid = uid
|
|
self.display_name = display_name
|