diff options
author | Guillaume Lacasa <guillaumelacasa@hotmail.com> | 2016-06-29 10:43:45 +0200 |
---|---|---|
committer | Guillaume Lacasa <guillaumelacasa@hotmail.com> | 2016-06-29 12:46:06 +0200 |
commit | 8e80d5923232b6b5852873a8c54fc3d8bbbc9a96 (patch) | |
tree | 05c8206b8e1aa94ec40b0e9cb921b2a3b06b3535 /TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs | |
parent | 8cfb0a7876aa457254f199ca99210b58284e1151 (diff) | |
download | TwoStepsAuthenticator-8e80d5923232b6b5852873a8c54fc3d8bbbc9a96.zip TwoStepsAuthenticator-8e80d5923232b6b5852873a8c54fc3d8bbbc9a96.tar.gz TwoStepsAuthenticator-8e80d5923232b6b5852873a8c54fc3d8bbbc9a96.tar.bz2 |
Dotnet Core support
Diffstat (limited to 'TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs')
-rw-r--r-- | TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs b/TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs new file mode 100644 index 0000000..168b934 --- /dev/null +++ b/TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; + +namespace TwoStepsAuthenticator +{ + public class UsedCodesManager : IUsedCodesManager + { + public void AddCode(long timestamp, string code, object user) + { + throw new NotImplementedException(); + } + + public bool IsCodeUsed(long timestamp, string code, object user) + { + throw new NotImplementedException(); + } + } + + +} |