Files
SPT-Server-Build/Core/Models/Eft/Common/Tables/LocationsGenerateAllResponse.cs
T
2025-01-17 18:13:37 +00:00

13 lines
308 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Common.Tables;
public record LocationsGenerateAllResponse
{
[JsonPropertyName("locations")]
public Dictionary<string, LocationBase> Locations { get; set; }
[JsonPropertyName("paths")]
public List<Path>? Paths { get; set; }
}