mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-18 19:30:25 +00:00
21 lines
610 B
Python
21 lines
610 B
Python
import bpy
|
|
from blenderbim.bim.prop import StrProperty
|
|
from bpy.types import PropertyGroup
|
|
from bpy.props import (
|
|
PointerProperty,
|
|
StringProperty,
|
|
EnumProperty,
|
|
BoolProperty,
|
|
IntProperty,
|
|
FloatProperty,
|
|
FloatVectorProperty,
|
|
CollectionProperty,
|
|
)
|
|
|
|
|
|
class DiffProperties(PropertyGroup):
|
|
diff_json_file: StringProperty(default="", name="Diff JSON File")
|
|
diff_old_file: StringProperty(default="", name="Diff Old IFC File")
|
|
diff_new_file: StringProperty(default="", name="Diff New IFC File")
|
|
diff_relationships: StringProperty(default="", name="Diff Relationships")
|