using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareSda.Model
{
///
/// 设备报警对象
///
[Serializable]
public class DeviceWarningInfo
{
/////
///// 报警地址
/////
//public string Address { get; set; }
/////
///// 报警内容
/////
//public string Context { get; set; }
///
/// 报警编号
///
public string Code { get; set; }
}
}