mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-08 19:29:35 +02:00
9 lines
253 B
Python
9 lines
253 B
Python
from models.User import User
|
|
|
|
|
|
class Needy(User):
|
|
def __init__(self, name: str, contact: str, region: str, how_much_peoples: int):
|
|
super().__init__(name, contact)
|
|
self.how_much_peoples = how_much_peoples
|
|
self.region = region
|