mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 00:21:20 +00:00
11 lines
259 B
C#
11 lines
259 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|