Files
ChanSort/ChanSort.Loader.GlobalClone/GcChannel.cs
hbeham eedda0111c - added code to read binary TLL file for LB5xx series
- added code to read GlobalClone XML file for LB6xx and later series
2014-05-25 16:13:15 +02:00

22 lines
391 B
C#

using System.Xml;
using ChanSort.Api;
namespace ChanSort.Loader.GlobalClone
{
internal class GcChannel : ChannelInfo
{
internal int Index;
internal XmlNode XmlNode;
#region ctor()
internal GcChannel(SignalSource source, int index, XmlNode node)
{
this.SignalSource = source;
this.Index = index;
this.XmlNode = node;
}
#endregion
}
}