mirror of
https://github.com/bitwarden/mobile
synced 2026-01-10 20:43:41 +00:00
10 lines
163 B
C#
10 lines
163 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IStateMigrationService
|
|
{
|
|
Task MigrateIfNeededAsync();
|
|
}
|
|
}
|