Skip to content

Commit

Permalink
Added IUtilities interface for interacting with Utilities View
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-przywoski committed Nov 4, 2023
1 parent d842a3f commit c46f3f0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ExportViewer.GUI/Interfaces/IUtilities.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace ExportViewer.GUI.Interfaces
{
public interface IUtilities
{
public void SelectDestination (object sender , System.EventArgs e);

public void SelectSource (object sender , System.EventArgs e);

public void Start (object sender , System.EventArgs e);

}
}

0 comments on commit c46f3f0

Please sign in to comment.