mirror of
https://github.com/Tribufu/TribufuDotNet
synced 2026-08-09 04:41:07 +00:00
19 lines
430 B
C#
19 lines
430 B
C#
// 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; }
|
|
}
|
|
}
|