Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HideoutImproveAreaRequestData.cs
T
TetrisGG 28a434a622 Update Models Comments
Changed Comments to adhere to xml standard in all Models.
Added missing comments.
2025-03-04 22:38:11 +01:00

41 lines
738 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.Inventory;
using Core.Models.Enums;
namespace Core.Models.Eft.Hideout;
public record HideoutImproveAreaRequestData : InventoryBaseActionRequestData
{
/// <summary>
/// Hideout area id from areas.json
/// </summary>
[JsonPropertyName("id")]
public string? AreaId
{
get;
set;
}
[JsonPropertyName("areaType")]
public HideoutAreas? AreaType
{
get;
set;
}
[JsonPropertyName("items")]
public List<HideoutItem>? Items
{
get;
set;
}
[JsonPropertyName("timestamp")]
public long? Timestamp
{
get;
set;
}
}