From f10eff1ad885457a004f4a2d4b8dab3d6c0841c2 Mon Sep 17 00:00:00 2001 From: thuva4 Date: Sun, 29 Apr 2018 17:40:00 +0530 Subject: Add project model in testapiclient Change-Id: If238e2d22f3c895264c90579c7c4d0b442f6c82a Signed-off-by: thuva4 --- testapi/testapi-client/testapiclient/models/project.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 testapi/testapi-client/testapiclient/models/project.py (limited to 'testapi/testapi-client/testapiclient/models/project.py') 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 -- cgit 1.2.3-korg