1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
bitwarden-mobile/src/Core/Abstractions/ITotpService.cs
2019-04-17 16:01:07 -04:00

11 lines
248 B
C#

using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface ITotpService
{
Task<string> GetCodeAsync(string key);
int GetTimeInterval(string key);
Task<bool> IsAutoCopyEnabledAsync();
}
}