using System.Text.Json.Serialization; namespace Core.Models.Eft.Common.Tables; public record LocationsBase { [JsonPropertyName("locations")] public Locations? Locations { get; set; } [JsonPropertyName("paths")] public List? Paths { get; set; } } public record Locations { // Add properties as necessary } public record Path { [JsonPropertyName("Source")] public string? Source { get; set; } [JsonPropertyName("Destination")] public string? Destination { get; set; } public bool? Event { get; set; } }