Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HideoutScavCaseStartRequestData.cs
T
2025-02-07 19:36:17 +00:00

37 lines
634 B
C#

using System.Text.Json.Serialization;
using Core.Models.Common;
using Core.Models.Eft.Inventory;
namespace Core.Models.Eft.Hideout;
public record HideoutScavCaseStartRequestData : InventoryBaseActionRequestData
{
[JsonPropertyName("recipeId")]
public string? RecipeId
{
get;
set;
}
[JsonPropertyName("items")]
public List<IdWithCount>? Items
{
get;
set;
}
[JsonPropertyName("tools")]
public List<IdWithCount>? Tools
{
get;
set;
}
[JsonPropertyName("timestamp")]
public long? Timestamp
{
get;
set;
}
}