Push project
This commit is contained in:
14
TextSort/ISortWindow.cs
Normal file
14
TextSort/ISortWindow.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace TextSortWindow
|
||||
{
|
||||
public interface ISortWindow
|
||||
{
|
||||
string InputText { get; }
|
||||
string SelectedStrategy { get; }
|
||||
void DisplaySortedText(string sortedText);
|
||||
void SetSortOptions(List<string> options);
|
||||
void DisplayTime(double milliseconds);
|
||||
event EventHandler SortButtonClicked;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user