13 lines
387 B
C#
13 lines
387 B
C#
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; } = "";
|
|
} |