WMGZON/models/users/customer.py

18 lines
360 B
Python
Raw Normal View History

from .user import User
class Customer(User):
'''
Class constructor to instatiate a customer object
No additional properties are assigned to the customer
'''
def __init__(self):
super().__init__()
def login(self):
print("Logging in as Customer")
def signup(self):
print("Signing up as Customer")