mirror of
https://github.com/azaion/loader.git
synced 2026-04-22 08:46:33 +00:00
941b8199aa
Made-with: Cursor
7 lines
149 B
Cython
7 lines
149 B
Cython
cdef class User:
|
|
|
|
def __init__(self, str id, str email, RoleEnum role):
|
|
self.id = id
|
|
self.email = email
|
|
self.role = role
|