Bitwarden-app-android-iphon.../src/Core/Abstractions/ITotpService.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
249 B
C#
Raw Normal View History

2019-04-17 22:01:07 +02:00
using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface ITotpService
{
Task<string> GetCodeAsync(string key);
int GetTimeInterval(string key);
Task<bool> IsAutoCopyEnabledAsync();
}
}