using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.Models
{
public class AlarmStatus
{
///
/// 报警地址
///
public string PLCAdress { get; set; }
///
/// 报警状态
///
public bool Status { get; set; }
}
}