Files
ChanSort/source/ChanSort.Loader.M3u/Channel.cs
Horst Beham f04cb5e903 - rewrote m3u loader to handle arbitrary lines in the file and preserve encoding and line endings
- support for Hisense channel.db format of the H50B7700UW, which has a different schema in the fav_x tables
- added spanish translation to distribution packages
2020-01-02 20:33:40 +01:00

16 lines
345 B
C#

using System.Collections.Generic;
using ChanSort.Api;
namespace ChanSort.Loader.M3u
{
internal class Channel : ChannelInfo
{
public List<string> Lines { get; }
public Channel(int index, int progNr, string name, List<string> lines) : base(SignalSource.IP, index, progNr, name)
{
this.Lines = lines;
}
}
}