Model/backend/categorisation/categorisation_logic.py
2026-02-12 14:25:35 +00:00

12 lines
323 B
Python

from typing import List
from backend.app.domain.classes.plan import Plan
class CategorisationLogic:
@staticmethod
def get_compliant_plans(plans: List[Plan]) -> List[Plan]:
raise NotImplementedError
@staticmethod
def get_cheapest_plan(plans: List[Plan]) -> Plan:
raise NotImplementedError