Files
ChanSort/source/ChanSort.Loader.Enigma2/Channel.cs
Horst Beham cb1fb9db5d - basic support for Enigma2 (Dreambox, Vu+,...) channel lists
- dynamic number of favorite lists (still limited to 64 due to bitmask)
2021-03-07 16:12:21 +01:00

29 lines
718 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; }
/// <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; }
/// <summary>
/// #DESCRIPTION of the userbouquet entry
/// </summary>
public string Description { get; set; }
}
}