mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
- LG WebOS 5 JSON serializer didn't set RecordIndex and didn't set deleted channels to -1
22 lines
414 B
C#
22 lines
414 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
{
|
|
internal class GcChannel<TNode> : ChannelInfo
|
|
{
|
|
internal TNode Node;
|
|
internal bool IsDisabled;
|
|
|
|
#region ctor()
|
|
internal GcChannel(SignalSource source, int index, TNode node)
|
|
{
|
|
this.SignalSource = source;
|
|
this.RecordIndex = index;
|
|
this.RecordOrder = index;
|
|
this.Node = node;
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|