mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
15 lines
476 B
Python
15 lines
476 B
Python
from abc import ABC, abstractmethod
|
|
from typing import Any, List, Optional
|
|
|
|
from backend.condition.domain.element import Element
|
|
from backend.condition.domain.property_condition_survey import PropertyConditionSurvey
|
|
|
|
|
|
class Mapper(ABC):
|
|
|
|
@abstractmethod
|
|
def map_asset_conditions_for_property(
|
|
self, client_property_data: Any, survey_year: Optional[int] = None
|
|
) -> PropertyConditionSurvey:
|
|
# TODO: client_data should be properly typed
|
|
pass
|