Files

19 lines
374 B
C#

using System.Xml;
using ChanSort.Api;
namespace ChanSort.Loader.Grundig
{
internal class Channel : ChannelInfo
{
public readonly XmlNode Node;
internal Channel(SignalSource source, int order, int rowId, XmlNode node)
{
this.SignalSource = source;
this.RecordOrder = order;
this.RecordIndex = rowId;
this.Node = node;
}
}
}