Files
SPT-Server-Build/Core/Models/Eft/Common/Tables/LocationsGenerateAllResponse.cs
T
2025-01-08 06:25:51 -05:00

12 lines
287 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; }
}