using System.Collections.Generic; namespace StellaOps.Scanner.WebService.Domain; public sealed record ScanSubmission( ScanTarget Target, bool Force, string? ClientRequestId, IReadOnlyDictionary Metadata); public sealed record ScanSubmissionResult( ScanSnapshot Snapshot, bool Created);