5 lines
77 B
Python
5 lines
77 B
Python
class BaseEntity:
|
|
def get_user(self):
|
|
raise NotImplementedError
|
|
|