summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.DotnetCore/UsedCodesManager.cs
blob: 168b934bf495cfb5239a5e688a8261598d835901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();
        }
    }


}