42 lines
750 B
C#
42 lines
750 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Hideout;
|
|
|
|
public record HideoutSettingsBase
|
|
{
|
|
[JsonPropertyName("generatorSpeedWithoutFuel")]
|
|
public double? GeneratorSpeedWithoutFuel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("generatorFuelFlowRate")]
|
|
public double? GeneratorFuelFlowRate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("airFilterUnitFlowRate")]
|
|
public double? AirFilterUnitFlowRate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("cultistAmuletBonusPercent")]
|
|
public double? CultistAmuletBonusPercent
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("gpuBoostRate")]
|
|
public double? GpuBoostRate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|