Sic.Framework/MECF.Framework.Common/Aitex/Core/Common/DeviceData/IoDevice/IoMotorLiftExchangeData.cs

30 lines
691 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
// /************************************************************************
// * @file IoMotorLiftExchangeData.cs
// * @author Su Liang
// * @date 2023/02/26
// *
// * @copyright &copy Sicentury Inc.
// *
// * @brief
// *
// * @details
// *
// *
// * *****************************************************************************/
using System;
using System.Runtime.Serialization;
namespace Aitex.Core.Common.DeviceData.IoDevice
{
[Serializable]
[DataContract]
public class IoMotorLiftExchangeData : ExchangeDataBase
{
[DataMember]
public bool IsDown { get; set; }
[DataMember]
public bool IsUp { get; set; }
}
}