Files
ChanSort/source/ChanSort.Loader.M3u/Channel.cs
Horst Beham ec4e50d8df - updated readme
- m3u: handling of additional #EXT instructions
2020-01-03 01:26:48 +01:00

17 lines
396 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 Channel(int index, int progNr, string name, List<string> lines) : base(SignalSource.IP, index, progNr, name)
{
this.Lines = lines;
}
}
}