AirScout/ScoutBase/ScoutBase.Propagation/PropagationSettings.cs

16 wiersze
351 B
C#
Czysty Zwykły widok Historia

2019-03-19 21:09:03 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ScoutBase.Propagation
{
class PropagationSettings
{
public double Frequency { get; set; }
public double K_Factor { get; set; }
public double F1_Clearance { get; set; }
public double Radius { get; set; }
}
}