1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-10 20:43:41 +00:00
Files
mobile/src/Core/Abstractions/IStateMigrationService.cs
mp-bw 99ceb8dbc1 [PM-1646] Add thread safety to migration process (#2453)
* Make migration process thread safe

* tweaks
2023-03-28 17:22:09 -04:00

10 lines
163 B
C#

using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface IStateMigrationService
{
Task MigrateIfNeededAsync();
}
}