13 lines
348 B
C#
13 lines
348 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace View_by_Distance.Shared.Models;
|
|
|
|
public record ParentMap(
|
|
[property: JsonPropertyName("FOLDER")] IReadOnlyList<string> FOLDER
|
|
);
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(ParentMap))]
|
|
public partial class ParentMapGenerationContext : JsonSerializerContext
|
|
{
|
|
} |