mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 10:52:05 +01:00
22 lines
391 B
C#
22 lines
391 B
C#
using System.Xml;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
{
|
|
internal class GcChannel : ChannelInfo
|
|
{
|
|
internal int Index;
|
|
internal XmlNode XmlNode;
|
|
|
|
#region ctor()
|
|
internal GcChannel(SignalSource source, int index, XmlNode node)
|
|
{
|
|
this.SignalSource = source;
|
|
this.Index = index;
|
|
this.XmlNode = node;
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|