mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
299 B
Python
12 lines
299 B
Python
from dataclasses import dataclass
|
|
from typing import Optional
|
|
from xml.dom.minidom import Element
|
|
|
|
from backend.condition.domain.aspect_type import AspectType
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ElementMapping:
|
|
element: Element
|
|
aspect_type: AspectType
|
|
element_instance: Optional[int] = None
|