Overhaul Secrets implementation

This commit is contained in:
Jeddunk 2023-12-24 13:32:23 +01:00
parent dfd9f1a97b
commit 5e2833e068
3 changed files with 11 additions and 21 deletions

View file

@ -0,0 +1,8 @@
namespace auto_creamapi.Utils
{
public interface ISecrets
{
public string ForumUsername();
public string ForumPassword();
}
}

View file

@ -1,14 +0,0 @@
namespace auto_creamapi.Utils
{
/// <summary>
/// To use this:
/// Rename file Secrets.EXAMPLE.cs to Secrets.cs
/// Rename class Secrets_REMOVETHIS to Secrets
/// Enter the relevant info below
/// </summary>
public static class Secrets_REMOVETHIS
{
public const string ForumUsername = "Enter username here";
public const string ForumPassword = "Enter password here";
}
}