12 lines
299 B
C#
12 lines
299 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.PresetBuild;
|
|
|
|
public record RemoveBuildRequestData : IRequestData
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public MongoId Id { get; set; }
|
|
}
|