Files
SPT-Server-Build/Core/Models/Eft/Common/Tables/LocationsGenerateAllResponse.cs
T
2025-01-07 11:40:15 +00:00

12 lines
285 B
C#

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