mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 11:22:03 +01:00
19 lines
505 B
C#
19 lines
505 B
C#
using System.Collections.Generic;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Sony
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
public readonly Dictionary<string,string> ServiceData = new Dictionary<string, string>();
|
|
public readonly Dictionary<string,string> ProgrammeData = new Dictionary<string, string>();
|
|
|
|
internal Channel(SignalSource source, int order, int rowId)
|
|
{
|
|
this.SignalSource = source;
|
|
this.RecordOrder = order;
|
|
this.RecordIndex = rowId;
|
|
}
|
|
}
|
|
}
|