Files
ChanSort/source/ChanSort.Loader.GlobalClone/GcChannel.cs
Horst Beham 6584a666c6 - Philips: fixed error saving the Favorite.xml file (effects Philips "ChannelMap_105" and later file format versions)
- added Hungarian translation (credits to Istvan Krisko)
- Sony XML: fixed display of wrong DVB-C cable channel/transponder number
- LG webOS 5: unfortunately no news yet, but the insight that some "CX" models run on webOS 3.6 and others on 5.1, using
  different file formats.
2020-12-05 21:55:43 +01:00

24 lines
450 B
C#

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