mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 03:42:04 +01:00
16 lines
341 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|