mysimulation/server/tso.common/Model/DynTuningEntry.cs

11 lines
259 B
C#
Raw Permalink Normal View History

namespace FSO.Common.Model
{
public class DynTuningEntry
{
public string tuning_type { get; set; }
public int tuning_table { get; set; }
public int tuning_index { get; set; }
public float value { get; set; }
}
}