bitwarden-android/src/Core/Abstractions/IAppIdService.cs
2019-03-28 16:45:00 -04:00

10 lines
202 B
C#

using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface IAppIdService
{
Task<string> GetAppIdAsync();
Task<string> GetAnonymousAppIdAsync();
}
}