| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;namespace IMCS_CCS.Model.vo{    public class RequestOpcUaData    {        public string UserName        { get; set; }        public string Password        { get; set; }        public string ServerUrl        { get; set; }        public string Type        { get; set; }        public string Path        { get; set; }        public List<string> Addresses        { get; set; }        public List<string> Values        { get; set; }    }    /// <summary>    /// 类型名称    /// </summary>    public enum OpcUaActionTypeEnum    {        Connect,        Write,        Read,        Upload,        SelectNcProgram,        StartNcProgram    }}
 |