2019-07-16 01:44:18 +02:00
|
|
|
|
using System.Collections.Generic;
|
2019-07-14 22:54:46 +02:00
|
|
|
|
using ChanSort.Api;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ChanSort.Loader.Sony
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class Channel : ChannelInfo
|
|
|
|
|
|
{
|
2019-07-16 01:44:18 +02:00
|
|
|
|
public readonly Dictionary<string,string> ServiceData = new Dictionary<string, string>();
|
|
|
|
|
|
public readonly Dictionary<string,string> ProgrammeData = new Dictionary<string, string>();
|
2019-07-14 22:54:46 +02:00
|
|
|
|
|
2019-07-16 01:44:18 +02:00
|
|
|
|
internal Channel(SignalSource source, int order, int rowId)
|
2019-07-14 22:54:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
this.SignalSource = source;
|
2019-07-16 01:44:18 +02:00
|
|
|
|
this.RecordOrder = order;
|
|
|
|
|
|
this.RecordIndex = rowId;
|
2019-07-14 22:54:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|