Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HideoutToggleAreaRequestData.cs
T
2025-01-21 12:37:55 +00:00

17 lines
418 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Request;
namespace Core.Models.Eft.Hideout;
public record HideoutToggleAreaRequestData : BaseInteractionRequestData
{
[JsonPropertyName("areaType")]
public int? AreaType { get; set; }
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
[JsonPropertyName("timestamp")]
public long? Timestamp { get; set; }
}