add base on map registration

This commit is contained in:
Дмитрий Шиманский
2023-11-16 19:08:16 +03:00
parent f9cd50d646
commit b8db704fef
14 changed files with 661 additions and 37 deletions

12
Types/SPCity.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace DiscordApp.Types
{
public class SPCity
{
public string? mayor { get; set; }
public string? description { get; set; }
public string? id { get; set; }
public string name { get; set; }
public int x { get; set; }
public int z { get; set; }
}
}

View File

@@ -21,7 +21,7 @@
public string id { get; set; }
}
public class Root
public class SPUser
{
public string id { get; set; }
public bool isBanned { get; set; }