Files
yavsc/test/yavscTests/Settings/Testing.cs
Paul Schneider 43c6f31a65 refacts
2021-06-06 20:32:39 +01:00

24 lines
493 B
C#

namespace yavscTests.Settings
{
public class PasswordCreds
{
public string UserName { get; set; }
public string Password { get; set; }
}
public class TestingSetup
{
public DbConnectionSettings ConnectionStrings { get; set; }
public PasswordCreds ValidCreds
{
get; set;
}
public PasswordCreds InvalidCreds
{
get; set;
}
public string YavscWebPath {get; set; }
}
}