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