mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 20:02:04 +01:00
- 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.
24 lines
450 B
C#
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
|
|
|
|
}
|
|
}
|