using System.Collections.Generic; using System.Text.Json.Serialization; namespace StellaOps.Zastava.Webhook.Backend; public sealed record RuntimePolicyRequest { [JsonPropertyName("namespace")] public required string Namespace { get; init; } [JsonPropertyName("labels")] public IReadOnlyDictionary? Labels { get; init; } [JsonPropertyName("images")] public required IReadOnlyList Images { get; init; } }