Import from internal git
This commit is contained in:
14
Core/Dto/Settings/CredentialsConfigDto.cs
Normal file
14
Core/Dto/Settings/CredentialsConfigDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user