ParameterIntegrityCheckResult.cs 591 B

12345678910111213141516171819202122
  1. /* ==============================================================================
  2. * 功能描述:SagaCheckResult
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/5/31 16:20:46
  5. * ==============================================================================*/
  6. using ServiceRevitLib.Mode;
  7. namespace ServiceRevitLib.DataCheck.Mode
  8. {
  9. /// <summary>
  10. /// SagaCheckResult
  11. /// </summary>
  12. class ParameterIntegrityCheckResult : ResultBase
  13. {
  14. /// <summary>
  15. /// 族名称
  16. /// </summary>
  17. public string FamilyName { get; set; }
  18. }
  19. }