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