using System; using System.Collections.Generic; using System.Text; namespace DirectUSB { public class Variable { #region Declarations private string _name; private List _attributes; private byte[] _data; #endregion #region Constructors / Teardown public Variable(string name, List attributes, byte[] data) { _name = name; _attributes = attributes; _data = data; } #endregion #region Public Properties public string Name { get { return _name; } } public List Attributes { get { return _attributes; } } public byte[] Data { get { return _data; } } #endregion } }