mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 20:02:04 +01:00
(There are MANY different file formats, only a few are currently supported) - fixed "most-recently-used" getting reversed every time the program was started - added "UTF-8 (Unicode)" character set to menu - fixed disappearing columns when loading different channel lists without restarting the application
21 lines
456 B
C#
21 lines
456 B
C#
using System.Xml;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.PhilipsXml
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
public readonly XmlNode SetupNode;
|
|
public string RawName;
|
|
public string RawSatellite;
|
|
|
|
internal Channel(SignalSource source, int order, int rowId, XmlNode setupNode)
|
|
{
|
|
this.SignalSource = source;
|
|
this.RecordOrder = order;
|
|
this.RecordIndex = rowId;
|
|
this.SetupNode = setupNode;
|
|
}
|
|
}
|
|
}
|