Flagged props as never remove

This commit is contained in:
Chomp
2025-01-23 18:05:16 +00:00
parent e040371998
commit c857320ae9
2 changed files with 4 additions and 1 deletions
@@ -495,6 +495,8 @@ public record BossLocationSpawn
[JsonPropertyName("IgnoreMaxBots")]
public bool? IgnoreMaxBots { get; set; }
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("Supports")]
public List<BossSupport> Supports { get; set; }
@@ -1,4 +1,4 @@
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;
using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
using Core.Models.Enums;
@@ -13,6 +13,7 @@ public record StartLocalRaidResponseData
[JsonPropertyName("serverSettings")]
public LocationServices? ServerSettings { get; set; }
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("profile")]
public ProfileInsuredItems? Profile { get; set; }