pyalchemybiz/pyalchemybiz/model/customer.py

6 lines
123 B
Python
Raw Normal View History

t_customer = None
class Customer(object):
def __str__(self):
return "%s %s" % (self.firstname, self.lastname)