mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-08 19:39:27 +02:00
13 lines
313 B
C#
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; }
|
|
}
|
|
}
|