aMetadataCollectionDirectory Work with video FilePath.IsIgnore Removed IId IsIgnore Keywords RootAmazon SaveAmazon PhysicalFileProvider Message Bump HarFilesDirectory
15 lines
475 B
C#
15 lines
475 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace View_by_Distance.Shared.Models;
|
|
|
|
public record RootAmazon(
|
|
[property: JsonPropertyName("aggregations")] Aggregations Aggregations,
|
|
[property: JsonPropertyName("count")] int Count,
|
|
[property: JsonPropertyName("data")] IReadOnlyList<Datum> Data
|
|
);
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(RootAmazon))]
|
|
public partial class RootAmazonGenerationContext : JsonSerializerContext
|
|
{
|
|
} |