mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
11 lines
No EOL
330 B
Python
11 lines
No EOL
330 B
Python
from abc import ABC, abstractmethod
|
|
from typing import Any, List
|
|
|
|
from backend.condition.domain.asset_condition import AssetCondition
|
|
|
|
class Mapper(ABC):
|
|
|
|
@abstractmethod
|
|
def map_asset_conditions_for_property(self, client_data: Any) -> List[AssetCondition]:
|
|
#TODO: client_data should be properly typed
|
|
pass |