mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 10:22:04 +01:00
- added experimental support for Loewe servicelist.xml format - added polarity information to Excel export (and changed column order slightly) - added missing Romanian translation files to the .zip
16 lines
278 B
C#
16 lines
278 B
C#
using System.Xml;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Loewe
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
public XmlElement XmlElement { get; set; }
|
|
public int PhysicalListId { get; set; }
|
|
|
|
public Channel(int id) : base(0, id, -1, "")
|
|
{
|
|
}
|
|
}
|
|
}
|