1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-26 13:13:28 +00:00
Files
mobile/src/Core/Abstractions/IAppIdService.cs
Kyle Spearrin 574c826036 app id service
2019-03-28 16:45:00 -04:00

11 lines
202 B
C#

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