using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FestoDebugger.Beckoff { public class BeckhoffIOAccessor { private string _name; private string _address; private string _scaling; private string _dataType; public T Value { get; set; } public string Name { get { return _name; } set { _name = value; } } public string Address { get { return _address; } set { _address = value; } } public string dataType { get { return _dataType; } set { _dataType = value; } } public BeckhoffIOAccessor(string name, string address, string scaling, string dataType) { this._name = name; this._address = address; this._scaling = scaling; this._dataType = dataType; } } }