mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
- Toshiba settingsDB.db: support for lists without analog tuner data (missing TADTunerDataTable) - Grunding: failed to load lists where the <Digital> element did not contain a <channels> child element - W.I.P: reworking the reference list system so that a simple list of channels can be applied to the main channel numbers or a particular favorite list. (The "Automatically reorder all lists" options currently does not work)
29 lines
736 B
C#
29 lines
736 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Enigma2
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
/// <summary>
|
|
/// first two fields of the lamedb entry
|
|
/// </summary>
|
|
public string Prefix { get; set; } = "1:0";
|
|
|
|
/// <summary>
|
|
/// For DVB-S it is the orbital position * 10 (e.g. 192 for Astra 19.2E) * 65536
|
|
/// </summary>
|
|
public int DvbNamespace { get; set; }
|
|
|
|
public int ServiceNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// all fields after the DVB-namespace in the lamedb entry
|
|
/// </summary>
|
|
public string Suffix { get; set; } = ":0:0:0:";
|
|
|
|
/// <summary>
|
|
/// #DESCRIPTION of the userbouquet entry
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
}
|
|
} |