comparison apollo/ApolloUser.py @ 3:6f262a92e8dc draft default tip

planemo upload for repository https://github.com/Yating-L/suite_gonramp_apollo.git commit 91b46f7c891c2466bc5b6a063411cdae75964515-dirty
author yating-l
date Mon, 27 Nov 2017 12:06:18 -0500
parents 8ff4b84d709f
children
comparison
equal deleted inserted replaced
2:8ff4b84d709f 3:6f262a92e8dc
1 #!/usr/bin/python
2
3 import os
4
5 class ApolloUser(object):
6 def __init__(self, user_email, password, firstname=None, lastname=None):
7 self.user_email = user_email
8 self.firstname = firstname
9 self.lastname = lastname
10 self.password = password