Model/backend/condition/lookups/uprn_lookup.py
2026-02-04 11:51:40 +00:00

8 lines
193 B
Python

from abc import ABC, abstractmethod
from typing import BinaryIO, Dict
class UprnLookup(ABC):
@abstractmethod
def get_property_ref_to_uprn_lookup(self) -> Dict[str, int]:
pass