mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 20:02:04 +01:00
- added support for Sony channel lists (read-only at the moment) - added option to disable check for updates
23 lines
410 B
C#
23 lines
410 B
C#
using System.Xml;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Sony
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
internal int Index;
|
|
internal XmlNode XmlNode;
|
|
internal bool IsDisabled;
|
|
|
|
#region ctor()
|
|
internal Channel(SignalSource source, int index, XmlNode node)
|
|
{
|
|
this.SignalSource = source;
|
|
this.Index = index;
|
|
this.XmlNode = node;
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|