mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-03 12:17:55 +08:00
18 lines
346 B
C#
18 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PluginInterface
|
|
{
|
|
public enum ProtectTypeEnum
|
|
{
|
|
[Display(Name = "只读")]
|
|
ReadOnly,
|
|
[Display(Name = "读写")]
|
|
ReadWrite,
|
|
}
|
|
}
|