iotgateway/IoTGateway.Model/IVariable.cs
2024-01-08 22:18:16 +08:00

26 lines
694 B
C#

using PluginInterface;
using System.ComponentModel.DataAnnotations;
namespace IoTGateway.Model
{
public interface IVariable
{
[Display(Name = "VariableName")]
public string Name { get; set; }
[Display(Name = "Description")]
public string Description { get; set; }
[Display(Name = "Address")]
public string DeviceAddress { get; set; }
[Display(Name = "DataType")]
public PluginInterface.DataTypeEnum DataType { get; set; }
[Display(Name = "Expressions")]
public string Expressions { get; set; }
[Display(Name = "Permission")]
public ProtectTypeEnum ProtectType { get; set; }
}
}