14 lines
390 B
C#
14 lines
390 B
C#
namespace Core.Dto.Settings;
|
|
|
|
|
|
/// <summary>
|
|
/// This class gathers all credentials-related configurations
|
|
/// </summary>
|
|
public class CredentialsConfigDto
|
|
{
|
|
public string Token { get; set; } = "";
|
|
public string Email { get; set; } = "";
|
|
public string Username { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
public string AlwaysAuth { get; set; } = "";
|
|
} |