DevicePropEntity.cs
698 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHWCS.Model
{
public class DevicePropEntity
{
public int Id { get; set; }
public int DeviceTypeId { get; set; }
public string Code { get; set; }
public string Name { get; set; }
public string Type { get; set; }
public string Description { get; set; }
public bool Enable { get; set; }
public int? IsMonitor { get; set; }
public string MonitorCompareValue { get; set; }
public string MonitorNormal { get; set; }
public string MonitorFailure { get; set; }
}
}