* 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.
17 lines
342 B
C#
17 lines
342 B
C#
namespace Wino.Core.Domain.Enums
|
|
{
|
|
public enum AccountCreationDialogState
|
|
{
|
|
Idle,
|
|
SigningIn,
|
|
PreparingFolders,
|
|
Completed,
|
|
ManuelSetupWaiting,
|
|
TestingConnection,
|
|
AutoDiscoverySetup,
|
|
AutoDiscoveryInProgress,
|
|
FetchingProfileInformation,
|
|
Canceled
|
|
}
|
|
}
|