8 lines
171 B
C#
8 lines
171 B
C#
namespace StellaOps.Scanner.WebService.Contracts;
|
|
|
|
public sealed record ScanSubmitResponse(
|
|
string ScanId,
|
|
string Status,
|
|
string? Location,
|
|
bool Created);
|