Files
ChanSort/source/ChanSort.Loader.GlobalClone/GcChannel.cs
Horst Beham 9e9028a99c added experimental support for LG WebOS 5.0 (e.g. OLED CX series)
- NO favorite list support
- UNCLEAR behavior when the list contains channels from multiple sources (DVB-C/T/S) - so far only files with a single source are supported
2020-05-03 18:07:28 +02:00

23 lines
418 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.Node = node;
}
#endregion
}
}