auto-creamapi-2/auto-creamapi/Utils/Secrets.EXAMPLE.cs

14 lines
421 B
C#
Raw Normal View History

2020-12-19 19:14:40 -05:00
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
2020-12-19 19:14:40 -05:00
/// </summary>
public class Secrets_REMOVETHIS
2020-12-19 19:14:40 -05:00
{
public const string Username = "Enter username here";
public const string Password = "Enter password here";
}
}