mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 19:43:03 +02:00
8 lines
93 B
Python
8 lines
93 B
Python
|
|
class User:
|
|
def __init__(self,id,name):
|
|
self.id=id
|
|
self.name=name
|
|
|
|
|