Files
PL_JusticeBot/Types/SPCity.cs
Дмитрий Шиманский b8db704fef add base on map registration
2023-11-16 19:08:16 +03:00

13 lines
313 B
C#

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; }
}
}