This commit is contained in:
Exception
2026-05-09 14:13:43 -04:00
parent 8bd09e08c3
commit 46589f2ef3
202 changed files with 11550 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System.Text.Json.Serialization;
namespace ir23.VerificationModels
{
public class steamparams
{
[JsonPropertyName("result")] public string result { get; set; }
[JsonPropertyName("steamid")] public string steamid { get; set; }
[JsonPropertyName("ownersteamid")] public string ownersteamid { get; set; }
[JsonPropertyName("vacbanned")] public bool vacbanned { get; set; }
[JsonPropertyName("publisherbanned")] public bool publisherbanned { get; set; }
}
public class steamresponse
{
[JsonPropertyName("params")]
public steamparams @params { get; set; }
}
public class steamroot
{
[JsonPropertyName("response")]
public steamresponse response { get; set; }
}
}