d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
27 lines
679 B
C#
27 lines
679 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Customization;
|
|
|
|
public record CustomizationSetRequest : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("customizations")]
|
|
public List<CustomizationSetOption>? Customizations { get; set; }
|
|
}
|
|
|
|
public record CustomizationSetOption
|
|
{
|
|
|
|
|
|
[JsonPropertyName("id")]
|
|
public MongoId Id { get; set; }
|
|
|
|
// TODO: convert into enum (dogTag/suite/voice)
|
|
[JsonPropertyName("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[JsonPropertyName("source")]
|
|
public string? Source { get; set; }
|
|
}
|