mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 18:03:14 +02:00
5 lines
102 B
Python
5 lines
102 B
Python
class User:
|
|
def __init__(self, user_id, name):
|
|
self.id = user_id
|
|
self.name = name
|