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