2024-09-13 02:51:37 +02:00
|
|
|
|
using System.Threading;
|
2025-01-28 22:56:19 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2024-09-13 02:51:37 +02:00
|
|
|
|
using Wino.Core.Domain.Enums;
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IAccountCreationDialog
|
|
|
|
|
|
{
|
2025-01-28 22:56:19 +01:00
|
|
|
|
Task ShowDialogAsync(CancellationTokenSource cancellationTokenSource);
|
2024-09-13 02:51:37 +02:00
|
|
|
|
void Complete(bool cancel);
|
2024-04-18 01:44:37 +02:00
|
|
|
|
AccountCreationDialogState State { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|