8 lines
256 B
C#
8 lines
256 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace View_by_Distance.Map.Models;
|
|
|
|
public record DatabaseFileRoot(
|
|
[property: JsonPropertyName("table")] string Table,
|
|
[property: JsonPropertyName("rows")] IReadOnlyList<DatabaseFile> Files
|
|
); |