Files
ChanSort/source/ChanSort.Api/Model/Transponder.cs
Horst Beham 3038d40d24 - added ChangHong LED40D3000ISX dtv_cmdb_2.bin format (1489 KB size)
- added experimental support for Loewe servicelist.xml format
- added polarity information to Excel export (and changed column order slightly)
- added missing Romanian translation files to the .zip
2022-03-20 21:40:46 +01:00

24 lines
562 B
C#

namespace ChanSort.Api
{
public class Transponder
{
private readonly int id;
public int Id { get { return id; } }
public Satellite Satellite { get; set; }
public decimal FrequencyInMhz { get; set; }
public int Number { get; set; }
public virtual int SymbolRate { get; set; }
public char Polarity { get; set; }
public int OriginalNetworkId { get; set; }
public int TransportStreamId { get; set; }
public SignalSource SignalSource { get; set; }
public Transponder(int id)
{
this.id = id;
}
}
}