.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -9,16 +9,8 @@ public record GetInsuranceCostRequestData : IRequestData
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("traders")]
public List<string>? Traders
{
get;
set;
}
public List<string>? Traders { get; set; }
[JsonPropertyName("items")]
public List<string>? Items
{
get;
set;
}
public List<string>? Items { get; set; }
}
@@ -1,5 +1,3 @@
namespace SPTarkov.Server.Core.Models.Eft.Insurance;
public class GetInsuranceCostResponseData : Dictionary<string, Dictionary<string, double>>
{
}
public class GetInsuranceCostResponseData : Dictionary<string, Dictionary<string, double>> { }
@@ -9,16 +9,8 @@ public record InsureRequestData : InventoryBaseActionRequestData
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("tid")]
public string? TransactionId
{
get;
set;
}
public string? TransactionId { get; set; }
[JsonPropertyName("items")]
public List<string>? Items
{
get;
set;
}
public List<string>? Items { get; set; }
}