Files
Horst Beham 8480fcf5c2 - experimental support for Philips channel list format 125 (with automatic sync to MtkChannelList.xml)
- experimental support for MtkChannelList.xml (which is part of several MediaTek based Google TVs, e.g. Philips formats 120 and 125)
- Philips formats 100-125: improved decoding of non-latin characters (turkish, cyrillic, ...)
2024-10-01 10:05:48 +02:00

16 lines
341 B
C#

using System.Xml;
using ChanSort.Api;
namespace ChanSort.Loader.MediaTek
{
internal class Channel : ChannelInfo
{
public XmlElement Xml { get; }
internal Channel(SignalSource source, int index, int oldProgNr, string name, XmlElement element) :base(source, index, oldProgNr, name)
{
this.Xml = element;
}
}
}