23 lines
438 B
C#
23 lines
438 B
C#
|
5 years ago
|
namespace test.Settings
|
||
|
|
{
|
||
|
|
public class PasswordCreds
|
||
|
|
{
|
||
|
|
public string UserName { get; set; }
|
||
|
|
public string Password { get; set; }
|
||
|
|
}
|
||
|
|
public class Testing
|
||
|
|
{
|
||
|
|
public DbConnectionSettings ConnectionStrings { get; set; }
|
||
|
|
|
||
|
|
public PasswordCreds[] ValidCreds
|
||
|
|
{
|
||
|
|
get; set;
|
||
|
|
}
|
||
|
|
public PasswordCreds[] InvalidCreds
|
||
|
|
{
|
||
|
|
get; set;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|