mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
320 B
Python
12 lines
320 B
Python
from dataclasses import dataclass
|
|
from typing import List
|
|
|
|
from backend.condition.domain.aspect_condition import AspectCondition
|
|
from backend.condition.domain.element_type import ElementType
|
|
|
|
|
|
@dataclass
|
|
class Element:
|
|
element_type: ElementType
|
|
element_instance: int
|
|
aspect_conditions: List[AspectCondition]
|