mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-08 19:29:35 +02:00
8 lines
162 B
Python
8 lines
162 B
Python
from models.User import User
|
|
|
|
|
|
class Volunteer(User):
|
|
def __init__(self, name, contact):
|
|
super().__init__(name, contact)
|
|
self.apartments = []
|