Updated config to add workshop maps
This commit is contained in:
parent
751c97b4cf
commit
6dccddf929
1 changed files with 6 additions and 3 deletions
|
|
@ -3,9 +3,9 @@ using System.Text.Json.Serialization;
|
|||
|
||||
namespace CS2_SimpleAdmin
|
||||
{
|
||||
public class CS2_SimpleAdminConfig : BasePluginConfig
|
||||
public class CS2_SimpleAdminConfig: BasePluginConfig
|
||||
{
|
||||
public override int Version { get; set; } = 5;
|
||||
public override int Version { get; set; } = 6;
|
||||
|
||||
[JsonPropertyName("DatabaseHost")]
|
||||
public string DatabaseHost { get; set; } = "";
|
||||
|
|
@ -36,5 +36,8 @@ namespace CS2_SimpleAdmin
|
|||
|
||||
[JsonPropertyName("DiscordWebhook")]
|
||||
public string DiscordWebhook { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("WorkshopMaps")]
|
||||
public List<string> WorkshopMaps { get; set; } = new List<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue