Format Style Fixes

This commit is contained in:
sp-tarkov-bot
2025-08-21 09:46:00 +00:00
parent d14e7cc155
commit 48b00a2814
260 changed files with 26 additions and 1783 deletions
@@ -4,8 +4,6 @@ namespace SPTarkov.Server.Core.Models.Spt.Repeatable;
public record QuestRewardValues
{
[JsonPropertyName("skillPointReward")]
public required double SkillPointReward { get; set; }
@@ -5,8 +5,6 @@ namespace SPTarkov.Server.Core.Models.Spt.Repeatable;
public record QuestTypePool
{
[JsonPropertyName("types")]
public required List<string> Types { get; set; }
@@ -16,8 +14,6 @@ public record QuestTypePool
public record QuestPool
{
[JsonPropertyName("Exploration")]
public required ExplorationPool Exploration { get; set; }
@@ -30,24 +26,18 @@ public record QuestPool
public record ExplorationPool
{
[JsonPropertyName("locations")]
public Dictionary<ELocationName, List<string>>? Locations { get; set; } // TODO: check the type, originally - Partial<Record<ELocationName, string[]>>
}
public record EliminationPool
{
[JsonPropertyName("targets")]
public Dictionary<string, TargetLocation>? Targets { get; set; }
}
public record TargetLocation
{
[JsonPropertyName("locations")]
public List<string>? Locations { get; set; }
}