1 Star 0 Fork 846

少年郎/iotgateway

forked from Sam/iotgateway 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
IVariable.cs 694 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sam 提交于 2024-01-08 22:18 . 多语言
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; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/shaonl/iotgateway.git
git@gitee.com:shaonl/iotgateway.git
shaonl
iotgateway
iotgateway
master

搜索帮助