mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-16 12:22:03 +01:00
- experimental feature to allow editing Audio-PID (but turned out to have no effect for webOS 5)
22 lines
456 B
C#
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;
|
|
}
|
|
}
|
|
}
|