18 lines
496 B
C#
18 lines
496 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Hideout;
|
|
|
|
public record HideoutToggleAreaRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("areaType")]
|
|
public HideoutAreas? AreaType { get; set; }
|
|
|
|
[JsonPropertyName("enabled")]
|
|
public bool? Enabled { get; set; }
|
|
|
|
[JsonPropertyName("timestamp")]
|
|
public long? Timestamp { get; set; }
|
|
}
|