14 lines
342 B
C#
14 lines
342 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StellaOps.Scanner.WebService.Domain;
|
|
|
|
public sealed record ScanSubmission(
|
|
ScanTarget Target,
|
|
bool Force,
|
|
string? ClientRequestId,
|
|
IReadOnlyDictionary<string, string> Metadata);
|
|
|
|
public sealed record ScanSubmissionResult(
|
|
ScanSnapshot Snapshot,
|
|
bool Created);
|