45 lines
857 B
C#
45 lines
857 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Hideout;
|
|
|
|
public record HideoutSettingsBase
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[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;
|
|
}
|
|
}
|