12345678910111213141516171819202122 |
- /* ==============================================================================
- * 功能描述:SagaCheckResult
- * 创 建 者:Garrett
- * 创建日期:2019/5/31 16:20:46
- * ==============================================================================*/
- using ServiceRevitLib.Mode;
- namespace ServiceRevitLib.DataCheck.Mode
- {
- /// <summary>
- /// SagaCheckResult
- /// </summary>
- class ParameterIntegrityCheckResult : ResultBase
- {
- /// <summary>
- /// 族名称
- /// </summary>
- public string FamilyName { get; set; }
-
- }
- }
|