12345678910111213141516171819202122 |
- using Autodesk.Revit.DB;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RevitExport
- {
- /// <summary>
- /// 元素包装
- /// </summary>
- public class ElementWrapper
- {
- public ElementWrapper(Element element)
- {
- RefElement = element;
- }
- public Element RefElement { get; private set; }
- }
- }
|