Added default Maps in the config

This commit is contained in:
Valentin Barat
2024-02-12 15:56:45 +01:00
parent 00819beec5
commit b31bb871a6
2 changed files with 4 additions and 1 deletions

View File

@@ -45,6 +45,9 @@ namespace CS2_SimpleAdmin
[JsonPropertyName("Discord")]
public Discord Discord { get; set; } = new Discord();
[JsonPropertyName("DefaultMaps")]
public List<string> DefaultMaps { get; set; } = new List<string>();
[JsonPropertyName("WorkshopMaps")]
public List<string> WorkshopMaps { get; set; } = new List<string>();
}