add: user class init
This commit is contained in:
commit
0e7e072e4e
17
User.py
Normal file
17
User.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
class User:
|
||||||
|
def __init__(self, first_name: str, last_name: str, username: str, password: str, permissions):
|
||||||
|
"""
|
||||||
|
: param first_name: The first name of the user
|
||||||
|
: type first_name: str
|
||||||
|
: param last_name: The last name of the user
|
||||||
|
: type last_name: str
|
||||||
|
: param password: The password of the user
|
||||||
|
: type password: str
|
||||||
|
: param permissions: The permissions of the user
|
||||||
|
: type permissions: dict
|
||||||
|
"""
|
||||||
|
self.first_name: str = first_name;
|
||||||
|
self.last_name: str = last_name;
|
||||||
|
self.username: str = username;
|
||||||
|
self.password: str = password;
|
||||||
|
self.permission = permissions;
|
Loading…
Reference in New Issue
Block a user