Corrected ProcessBuyTradeRequestData transactionId to be Mongoid, updated associated code

Also moved TransactionId in `InsuranceRequestData` to be MongoId, updated associated code
This commit is contained in:
Chomp
2025-09-30 22:38:42 +01:00
parent d68a51f031
commit cc745f4c46
6 changed files with 22 additions and 19 deletions
@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
using SPTarkov.Server.Core.Models.Eft.Inventory;
namespace SPTarkov.Server.Core.Models.Eft.Trade;
@@ -9,5 +10,5 @@ public record ProcessBaseTradeRequestData : InventoryBaseActionRequestData
public string? Type { get; set; }
[JsonPropertyName("tid")]
public string? TransactionId { get; set; }
public MongoId TransactionId { get; set; }
}