Skip to content

Commit

Permalink
Update Config.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
daffyyyy authored Nov 15, 2023
1 parent f01d4b0 commit 9f982d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ public class WeaponPaintsConfig : BasePluginConfig
public override int Version { get; set; } = 2;

[JsonPropertyName("DatabaseHost")]
public string DatabaseHost { get; set; } = "localhost";
public string DatabaseHost { get; set; } = "";

[JsonPropertyName("DatabasePort")]
public int DatabasePort { get; set; } = 3306;

[JsonPropertyName("DatabaseUser")]
public string DatabaseUser { get; set; } = "DBUSER";
public string DatabaseUser { get; set; } = "";

[JsonPropertyName("DatabasePassword")]
public string DatabasePassword { get; set; } = "DBPASSWORD";
public string DatabasePassword { get; set; } = "";

[JsonPropertyName("DatabaseName")]
public string DatabaseName { get; set; } = "DBDATABASE";
public string DatabaseName { get; set; } = "";

[JsonPropertyName("CmdRefreshCooldownSeconds")]
public int CmdRefreshCooldownSeconds { get; set; } = 60;
Expand Down

0 comments on commit 9f982d1

Please sign in to comment.