Set up IHostEnvironment

This commit is contained in:
dan_clark@outlook.com
2022-03-27 15:44:43 +01:00
parent 6f20f5d1ba
commit 40d8caf1e0
39 changed files with 478 additions and 209 deletions
+4 -3
View File
@@ -1,8 +1,9 @@
namespace TheXamlGuy.TaskbarGroup.Core
namespace TheXamlGuy.TaskbarGroup.Core
{
public interface ITaskbar
public interface ITaskbar : IInitializable, IDisposable
{
TaskbarState GetCurrentState();
IntPtr GetHandle();
}
}