mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 03:42:04 +01:00
- 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
23 lines
418 B
C#
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
|
|
|
|
}
|
|
}
|