d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
17 lines
400 B
C#
17 lines
400 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Insurance;
|
|
|
|
public record GetInsuranceCostRequestData : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("traders")]
|
|
public List<MongoId>? Traders { get; set; }
|
|
|
|
[JsonPropertyName("items")]
|
|
public List<MongoId>? Items { get; set; }
|
|
}
|