Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/Common/DeviceData/Base/DeviceDataBase.cs

33 lines
749 B
C#

// /************************************************************************
// * @file ExchangeDataBase.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.Base
{
[Serializable]
[DataContract]
public class DeviceDataBase : XDataBase
{
[DataMember]
public string Status { get; set; }
[DataMember]
public bool IsBusy { get; set; }
[DataMember]
public bool IsAlarm { get; set; }
}
}