2020-01-02 20:33:40 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using ChanSort.Api;
|
2020-01-02 11:48:00 +01:00
|
|
|
|
|
|
|
|
|
|
namespace ChanSort.Loader.M3u
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class Channel : ChannelInfo
|
|
|
|
|
|
{
|
2020-01-02 20:33:40 +01:00
|
|
|
|
public List<string> Lines { get; }
|
2020-01-03 01:26:48 +01:00
|
|
|
|
public int ExtInfTrackNameIndex { get; set; }
|
2023-01-04 13:31:46 +01:00
|
|
|
|
public int ExtInfParamIndex { get; set; }
|
2020-01-02 11:48:00 +01:00
|
|
|
|
|
2023-06-03 10:38:11 +02:00
|
|
|
|
public Channel(int index, int progNr, string name, List<string> lines) : base(SignalSource.IpAll, index, progNr, name)
|
2020-01-02 11:48:00 +01:00
|
|
|
|
{
|
2020-01-02 20:33:40 +01:00
|
|
|
|
this.Lines = lines;
|
2020-01-02 11:48:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|