1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
bitwarden-mobile/src/Core/Abstractions/IAppIdService.cs
mpbw2 dbadf8c56f
[PM-3222] Migration of data from LiteDB to shared pref storage (#2724)
* Migration of data from LiteDB to shared pref storage

* tweaks
2023-08-30 10:55:20 -04:00

10 lines
155 B
C#

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