mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
MOVEMENT
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user