mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
10 lines
202 B
C#
10 lines
202 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IAppIdService
|
|
{
|
|
Task<string> GetAppIdAsync();
|
|
Task<string> GetAnonymousAppIdAsync();
|
|
}
|
|
}
|