16 lines
381 B
Python
16 lines
381 B
Python
from api_validations.core_validations import BaseModelRegular
|
|
from api_validations.validations_request import (
|
|
PydanticBaseModel,
|
|
ListOptions,
|
|
)
|
|
|
|
class RegisterServices2Occupant(PydanticBaseModel):
|
|
service_uu_id: str
|
|
occupant_uu_id: str
|
|
build_part_uu_id: str
|
|
|
|
|
|
class RegisterServices2Employee(PydanticBaseModel):
|
|
service_uu_id: str
|
|
employee_uu_id: str
|