28 lines
735 B
C#
28 lines
735 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; }
|
|
}
|