yavsc/test/yavscTests/Settings/Testing.cs

23 lines
493 B
C#
Raw Normal View History

2021-06-06 20:32:39 +01:00
namespace yavscTests.Settings
2021-01-02 00:41:54 +00:00
{
public class PasswordCreds
{
public string UserName { get; set; }
public string Password { get; set; }
}
2021-06-06 20:32:39 +01:00
public class TestingSetup
2021-01-02 00:41:54 +00:00
{
public DbConnectionSettings ConnectionStrings { get; set; }
2021-06-06 20:32:39 +01:00
public PasswordCreds ValidCreds
2021-01-02 00:41:54 +00:00
{
get; set;
}
2021-06-06 20:32:39 +01:00
public PasswordCreds InvalidCreds
2021-01-02 00:41:54 +00:00
{
get; set;
}
2021-06-06 20:32:39 +01:00
public string YavscWebPath {get; set; }
2021-01-02 00:41:54 +00:00
}
}