1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-10 09:49:52 +01:00
bitwarden-mobile/src/Core/Abstractions/IAppIdService.cs

11 lines
202 B
C#
Raw Normal View History

2019-03-28 21:45:00 +01:00
using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface IAppIdService
{
Task<string> GetAppIdAsync();
Task<string> GetAnonymousAppIdAsync();
}
}