5 lines
140 B
Python
5 lines
140 B
Python
|
|
class User:
|
||
|
|
def __init__(self, id: int, name: str, email: str):
|
||
|
|
self.id = id
|
||
|
|
self.name = name
|
||
|
|
self.email = email
|