Migration plan v1

This commit is contained in:
Burak Kaan Köse
2026-04-23 14:52:52 +02:00
parent 6f82cd4f26
commit c1bda75d9f
17 changed files with 2087 additions and 25 deletions
@@ -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();
}