23 lines
412 B
Python
23 lines
412 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class User(ABC):
|
|
'''
|
|
Class constructor to instatiate the base object
|
|
'''
|
|
def __init__(self):
|
|
self.id = 0
|
|
self.username = ""
|
|
self.email = ""
|
|
self.firstName = ""
|
|
self.lastName = ""
|
|
self.phone = ""
|
|
|
|
@abstractmethod
|
|
def login(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def signup(self):
|
|
pass
|
|
|