d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
30 lines
737 B
C#
30 lines
737 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Eft.Profile;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Builds;
|
|
|
|
public record SetMagazineRequest : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("Id")]
|
|
public MongoId Id { get; set; }
|
|
|
|
[JsonPropertyName("Name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("Caliber")]
|
|
public string? Caliber { get; set; }
|
|
|
|
[JsonPropertyName("Items")]
|
|
public List<MagazineTemplateAmmoItem>? Items { get; set; }
|
|
|
|
[JsonPropertyName("TopCount")]
|
|
public int? TopCount { get; set; }
|
|
|
|
[JsonPropertyName("BottomCount")]
|
|
public int? BottomCount { get; set; }
|
|
}
|