Import from internal git
This commit is contained in:
13
Core/Settings/CredentialsConfig.cs
Normal file
13
Core/Settings/CredentialsConfig.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Core.Settings;
|
||||
|
||||
/// <summary>
|
||||
/// This class gathers all credentials-related configurations
|
||||
/// </summary>
|
||||
public class CredentialsConfig
|
||||
{
|
||||
public string Token { init; get; } = "";
|
||||
public string Email { init; get; } = "";
|
||||
public string Username { init; get; } = "";
|
||||
public string Password { init; get; } = "";
|
||||
public string AlwaysAuth { init; get; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user