mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
354 B
Python
12 lines
354 B
Python
from typing import List
|
|
from backend.app.db.models.recommendations import PlanModel
|
|
|
|
|
|
class CategorisationLogic:
|
|
@staticmethod
|
|
def get_compliant_plans(plans: List[PlanModel]) -> List[PlanModel]:
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def get_cheapest_plan(plans: List[PlanModel]) -> PlanModel:
|
|
raise NotImplementedError
|