Files
ChanSort/source/ChanSort.Loader.Sony/Channel.cs
hbeham daeb9ffb1b - fixed 200MHz offset for Samsung DVB-C channels
- added support for Sony channel lists (read-only at the moment)
- added option to disable check for updates
2019-07-14 22:54:46 +02:00

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
}
}