| 1234567891011121314151617181920212223242526 |
- /* ==============================================================================
- * 功能描述:楼层顺序号检查结果
- * 创 建 者:Garrett
- * 创建日期:2018/10/23 9:54:25
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Autodesk.Revit.DB;
- namespace SAGA.MBI.ToolsData.ModeCheck
- {
- /// <summary>
- /// SagaSignCheckResult
- /// </summary>
- class FloorSequenceCheckResult : ModeCheckResultBase
- {
- public override void Export()
- {
- base.Export();
- }
- }
- }
|