using System.Threading.Tasks;
using Wino.Core.Domain.Entities;
namespace Wino.Core.Domain.Interfaces
{
public interface ICustomServerAccountCreationDialog : IAccountCreationDialog
{
///
/// Returns the custom server information from the dialog..
///
/// Null if canceled.
Task GetCustomServerInformationAsync();
///
/// Displays preparing folders page.
///
void ShowPreparingFolders();
}
}