9 lines
307 B
C#
9 lines
307 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace StellaOps.Feedser.Exporter.TrivyDb;
|
|
|
|
public sealed record OciIndex(
|
|
[property: JsonPropertyName("schemaVersion")] int SchemaVersion,
|
|
[property: JsonPropertyName("manifests")] IReadOnlyList<OciDescriptor> Manifests);
|