Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAccountCreationDialog.cs

14 lines
356 B
C#
Raw Normal View History

using System.Threading;
2025-02-15 12:53:32 +01:00
using System.Threading.Tasks;
using Wino.Core.Domain.Enums;
2024-04-18 01:44:37 +02:00
namespace Wino.Core.Domain.Interfaces
{
public interface IAccountCreationDialog
{
2025-02-15 12:53:32 +01:00
Task ShowDialogAsync(CancellationTokenSource cancellationTokenSource);
void Complete(bool cancel);
2024-04-18 01:44:37 +02:00
AccountCreationDialogState State { get; set; }
}
}