* Cancellation support for getting responses from the server. * Adding cancel button for account creation dialog initialization. * Prevent invalid outlook message types like contact, calendar event or todo item. * Remove debug launcher options.
13 lines
321 B
C#
13 lines
321 B
C#
using System.Threading;
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
{
|
|
public interface IAccountCreationDialog
|
|
{
|
|
void ShowDialog(CancellationTokenSource cancellationTokenSource);
|
|
void Complete(bool cancel);
|
|
AccountCreationDialogState State { get; set; }
|
|
}
|
|
}
|