mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
275 B
Python
14 lines
275 B
Python
from dataclasses import dataclass
|
|
from typing import List
|
|
from datetime import date
|
|
|
|
from backend.condition.domain.element import Element
|
|
|
|
|
|
@dataclass
|
|
class PropertyConditionSurvey:
|
|
uprn: int
|
|
elements: List[Element]
|
|
|
|
date: date
|
|
source: str # TODO: make enum
|