mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
323 B
Python
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
|