mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 02:12:03 +01:00
19 lines
374 B
C#
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;
|
|
}
|
|
}
|
|
}
|