Files
ChanSort/source/ChanSort.Loader.Loewe/Channel.cs

16 lines
278 B
C#
Raw Normal View History

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, "")
{
}
}
}