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
|
|
|
|
|
2020-02-02 23:31:44 +01:00
|
|
|
|
internal Channel(SignalSource source, int order, int recId)
|
2019-07-14 22:54:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
this.SignalSource = source;
|
2019-07-16 01:44:18 +02:00
|
|
|
|
this.RecordOrder = order;
|
2020-02-02 23:31:44 +01:00
|
|
|
|
this.RecordIndex = recId;
|
2019-07-14 22:54:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|