Files
git.stella-ops.org/src/StellaOps.Concelier.Exporter.TrivyDb/OciIndex.cs
2025-10-18 20:46:16 +03:00

9 lines
309 B
C#

using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace StellaOps.Concelier.Exporter.TrivyDb;
public sealed record OciIndex(
[property: JsonPropertyName("schemaVersion")] int SchemaVersion,
[property: JsonPropertyName("manifests")] IReadOnlyList<OciDescriptor> Manifests);