namespace ZB.MOM.WW.MxGateway.Server.Security.Authentication;
/// Migrates authentication storage between versions.
public interface IAuthStoreMigrator
{
/// Performs authentication store migration asynchronously.
/// Token to cancel the asynchronous operation.
/// Asynchronous task representing the migration operation.
Task MigrateAsync(CancellationToken cancellationToken);
}