Files
ChanSort/source/ChanSort.Loader.Grundig/Channel.cs
Horst Beham 7fc413e64d - Grundig: added support for dvb*_config.xml channel lists
- experimental feature to allow editing Audio-PID (but turned out to have no effect for webOS 5)
2021-01-02 13:18:37 +01:00

22 lines
456 B
C#

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