Add safecheck client

This commit is contained in:
Guilherme Werner 2025-06-01 21:46:24 -03:00
parent 6ebfde013a
commit 117d8b5ab6
9 changed files with 170 additions and 1 deletions

View file

@ -0,0 +1,19 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
namespace Tribufu.SafeCheck
{
public class SafecheckResponse
{
[JsonProperty("safe")]
public bool Safe { get; set; }
[JsonProperty("reason")]
public string? Reason { get; set; }
[JsonProperty("detections")]
public SafeCheckDetections? Detections { get; set; }
}
}