mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 02:12:03 +01:00
- SignalSource.IP is now treated as a broadcast system (distinguishing Analog/Dvb/Ip) and no longer a broadcast medium (like antenna/cable/sat). - SignalSource.Digital was renamed to DVB
18 lines
446 B
C#
18 lines
446 B
C#
using System.Collections.Generic;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.M3u
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
public List<string> Lines { get; }
|
|
public int ExtInfTrackNameIndex { get; set; }
|
|
public int ExtInfParamIndex { get; set; }
|
|
|
|
public Channel(int index, int progNr, string name, List<string> lines) : base(SignalSource.IpAll, index, progNr, name)
|
|
{
|
|
this.Lines = lines;
|
|
}
|
|
}
|
|
}
|