using IgniteEngine.IO; namespace IgniteEngine.Definitions.SHN { /// /// Class that defines the file SingleData.shn. /// [Definition] public class SingleData { /// /// The data's index. /// [Identity] public string SingleDataIDX { get; private set; } /// /// The data's value. /// public ushort SingleDataValue { get; private set; } } }