iotgateway/IoTGateway.Model/IVariable.cs
2021-12-12 14:55:48 +08:00

26 lines
680 B
C#

using PluginInterface;
using System.ComponentModel.DataAnnotations;
namespace IoTGateway.Model
{
public interface IVariable
{
[Display(Name = "变量名")]
public string Name { get; set; }
[Display(Name = "描述")]
public string Description { get; set; }
[Display(Name = "地址")]
public string DeviceAddress { get; set; }
[Display(Name = "数据类型")]
public PluginInterface.DataTypeEnum DataType { get; set; }
[Display(Name = "倍率")]
public double ValueFactor { get; set; }
[Display(Name = "权限")]
public ProtectTypeEnum ProtectType { get; set; }
}
}