api.auth/src/Robware.Auth.Tests/TestUser.cs
2020-04-12 13:50:39 +01:00

8 lines
No EOL
178 B
C#

namespace Robware.Auth.Tests {
internal class TestUser : User {
public TestUser(string username, string password) {
Username = username;
Password = password;
}
}
}