diff options
Diffstat (limited to 'gn3/auth/authentication/users.py')
-rw-r--r-- | gn3/auth/authentication/users.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gn3/auth/authentication/users.py b/gn3/auth/authentication/users.py new file mode 100644 index 0000000..4854d18 --- /dev/null +++ b/gn3/auth/authentication/users.py @@ -0,0 +1,9 @@ +"""User-specific code and data structures.""" +from uuid import UUID +from typing import NamedTuple + +class User(NamedTuple): + """Class representing a user.""" + user_id: UUID + email: str + name: str |