mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-08 19:29:35 +02:00
15 lines
282 B
Python
15 lines
282 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from db_repository.BaseRepositories import BaseCRUDRepository
|
|
from models.Volunteer import Volunteer
|
|
|
|
|
|
class VolunteerCreate(BaseModel, Volunteer):
|
|
id: int
|
|
|
|
|
|
class VolunteerSchema(VolunteerCreate):
|
|
id: int = None
|