Fix incorrect workout classes
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
using SPTarkov.Server.Core.Models.Eft.Common.Tables;
|
using SPTarkov.Server.Core.Models.Eft.Common.Tables;
|
||||||
using SPTarkov.Server.Core.Models.Utils;
|
using SPTarkov.Server.Core.Models.Utils;
|
||||||
using Mastering = SPTarkov.Server.Core.Models.Eft.Common.Mastering;
|
|
||||||
|
|
||||||
namespace SPTarkov.Server.Core.Models.Eft.Health;
|
namespace SPTarkov.Server.Core.Models.Eft.Health;
|
||||||
|
|
||||||
@@ -17,7 +16,7 @@ public record WorkoutSkills
|
|||||||
public List<CommonSkill> Common { get; set; }
|
public List<CommonSkill> Common { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("Mastering")]
|
[JsonPropertyName("Mastering")]
|
||||||
public List<Mastering>? Mastering { get; set; }
|
public List<MasterySkill>? Mastering { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("Bonuses")]
|
[JsonPropertyName("Bonuses")]
|
||||||
public Bonus? Bonuses { get; set; }
|
public Bonus? Bonuses { get; set; }
|
||||||
|
|||||||
@@ -17,6 +17,9 @@ public record HandleQTEEventRequestData : InventoryBaseActionRequestData
|
|||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public string? Id { get; set; }
|
public string? Id { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("aid")]
|
||||||
|
public string? Aid { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("timestamp")]
|
[JsonPropertyName("timestamp")]
|
||||||
public long? Timestamp { get; set; }
|
public long? Timestamp { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user