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

13 lines
330 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
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Interfaces;
public interface IAccountCreationDialog
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
Task ShowDialogAsync(CancellationTokenSource cancellationTokenSource);
void Complete(bool cancel);
AccountCreationDialogState State { get; set; }
2024-04-18 01:44:37 +02:00
}