添加项目文件。

This commit is contained in:
GG Z
2026-02-23 16:55:57 +08:00
parent 0c41863aee
commit 34cc0e88c6
44 changed files with 6362 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using Autodesk.Revit.DB;
using IFC_Revit_Interop.Utils;
namespace IFC_Revit_Interop
{
// Token: 0x0200000D RID: 13
public class ElementData
{
// Token: 0x0600004F RID: 79 RVA: 0x00005638 File Offset: 0x00003838
public ElementData()
{
}
// Token: 0x06000050 RID: 80 RVA: 0x00005640 File Offset: 0x00003840
public ElementData(Element e, ViewData view = null)
{
this.Id = e.Id.IntegerValue;
Category category = e.Category;
this.Category = ((category != null) ? category.Name : null);
this.IFCGUID = e.IfcGUID();
}
// Token: 0x04000046 RID: 70
public int Id;
// Token: 0x04000047 RID: 71
public string Category;
// Token: 0x04000048 RID: 72
public string IFCGUID;
}
}