Update to NET 8; Fix Secret class

This commit is contained in:
Jeddunk 2023-12-23 19:23:14 +01:00
parent 23459ec794
commit 80b704cecb
2 changed files with 53 additions and 53 deletions

View file

@ -6,9 +6,9 @@ namespace auto_creamapi.Utils
/// Rename class Secrets_REMOVETHIS to Secrets
/// Enter the relevant info below
/// </summary>
public class Secrets_REMOVETHIS
public static class Secrets_REMOVETHIS
{
public const string Username = "Enter username here";
public const string Password = "Enter password here";
public const string ForumUsername = "Enter username here";
public const string ForumPassword = "Enter password here";
}
}