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();
}
}