diff options
Diffstat (limited to 'TwoStepsAuthenticator.UnitTests/MockUsedCodesManager.cs')
-rw-r--r-- | TwoStepsAuthenticator.UnitTests/MockUsedCodesManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TwoStepsAuthenticator.UnitTests/MockUsedCodesManager.cs b/TwoStepsAuthenticator.UnitTests/MockUsedCodesManager.cs index cb0065f..3ed8ba8 100644 --- a/TwoStepsAuthenticator.UnitTests/MockUsedCodesManager.cs +++ b/TwoStepsAuthenticator.UnitTests/MockUsedCodesManager.cs @@ -1,15 +1,15 @@ namespace TwoStepsAuthenticator.UnitTests { internal class MockUsedCodesManager : IUsedCodesManager { - public ulong? LastChallenge { get; private set; } + public long? LastChallenge { get; private set; } public string LastCode { get; private set; } - public void AddCode(ulong challenge, string code) { + public void AddCode(long challenge, string code, object user) { this.LastChallenge = challenge; this.LastCode = code; } - public bool IsCodeUsed(ulong challenge, string code) { + public bool IsCodeUsed(long challenge, string code, object user) { return false; } } |