summaryrefslogtreecommitdiffstats
path: root/testapi/testapi-client/testapiclient/models/project.py
diff options
context:
space:
mode:
authorthuva4 <tharma.thuva@gmail.com>2018-04-29 17:40:00 +0530
committerthuva4 <tharma.thuva@gmail.com>2018-05-07 11:08:10 +0530
commitf10eff1ad885457a004f4a2d4b8dab3d6c0841c2 (patch)
tree1e6b6b19b9c6b031d28d45e91e75c4cf1bfced28 /testapi/testapi-client/testapiclient/models/project.py
parent71c429c25f30660d436fef7b064553c266d4655a (diff)
Add project model in testapiclient
Change-Id: If238e2d22f3c895264c90579c7c4d0b442f6c82a Signed-off-by: thuva4 <tharma.thuva@gmail.com>
Diffstat (limited to 'testapi/testapi-client/testapiclient/models/project.py')
-rw-r--r--testapi/testapi-client/testapiclient/models/project.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/testapi/testapi-client/testapiclient/models/project.py b/testapi/testapi-client/testapiclient/models/project.py
new file mode 100644
index 0000000..fc85588
--- /dev/null
+++ b/testapi/testapi-client/testapiclient/models/project.py
@@ -0,0 +1,4 @@
+class ProjectCreateRequest():
+ def __init__(self, name='', description=''):
+ self.description = description
+ self.name = name