bitwarden-android/src/Core/Abstractions/IAppIdService.cs

11 lines
202 B
C#
Raw Normal View History

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