mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 10:52:05 +01:00
23 lines
511 B
C#
23 lines
511 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 Transponder(int id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
}
|
|
}
|