/* ==============================================================================
* 功能描述:SagaCheckResult
* 创 建 者:Garrett
* 创建日期:2019/5/31 16:20:46
* ==============================================================================*/
namespace ServiceRevitLib.Mode
{
///
/// SagaCheckResult
///
class EquipPartLocationCheckResult : ResultBase
{
///
/// 部件id
///
public string PartId { get; set; }
///
/// 部件族名称
///
public string PartFamilyName { get; set; }
///
/// 关联设备id
///
public string RefId { get; set; }
}
}