ElementWrapper.cs 431 B

12345678910111213141516171819202122
  1. using Autodesk.Revit.DB;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace RevitExport
  8. {
  9. /// <summary>
  10. /// 元素包装
  11. /// </summary>
  12. public class ElementWrapper
  13. {
  14. public ElementWrapper(Element element)
  15. {
  16. RefElement = element;
  17. }
  18. public Element RefElement { get; private set; }
  19. }
  20. }