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