mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 13:13:28 +00:00
11 lines
202 B
C#
11 lines
202 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IAppIdService
|
|
{
|
|
Task<string> GetAppIdAsync();
|
|
Task<string> GetAnonymousAppIdAsync();
|
|
}
|
|
}
|