summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/models/user_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/opnfv_testapi/models/user_models.py')
-rw-r--r--testapi/opnfv_testapi/models/user_models.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/testapi/opnfv_testapi/models/user_models.py b/testapi/opnfv_testapi/models/user_models.py
new file mode 100644
index 0000000..90fbadc
--- /dev/null
+++ b/testapi/opnfv_testapi/models/user_models.py
@@ -0,0 +1,9 @@
+from opnfv_testapi.models import base_models
+
+
+class User(base_models.ModelBase):
+ def __init__(self, user=None, email=None, fullname=None, groups=None):
+ self.user = user
+ self.email = email
+ self.fullname = fullname
+ self.groups = groups