Remove legacy AttackTracer repo content
Some checks failed
OfficeCom Sentinel Client / build-client (push) Has been cancelled

This commit is contained in:
OfficeCom Codex
2026-07-17 00:55:16 +02:00
parent 85e394f647
commit b5e06b885a
57 changed files with 98 additions and 3602 deletions

View File

@@ -0,0 +1,14 @@
namespace OCSentinelCli.Models;
internal sealed record UploadResult
{
public bool Success { get; init; }
public int StatusCode { get; init; }
public string Message { get; init; } = string.Empty;
public string Nonce { get; init; } = string.Empty;
public string PayloadSha256 { get; init; } = string.Empty;
}