Migration plan v1
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Wino.Core.Domain.Models.Accounts;
|
||||
|
||||
namespace Wino.Core.Domain.Interfaces;
|
||||
|
||||
public interface ILegacyLocalMigrationService
|
||||
{
|
||||
Task<LegacyLocalMigrationPreview> DetectAsync(CancellationToken cancellationToken = default);
|
||||
Task<LegacyLocalMigrationResult> ImportAsync(CancellationToken cancellationToken = default);
|
||||
void MarkPromptDeferred();
|
||||
}
|
||||
Reference in New Issue
Block a user