Stuff for tunesync

This commit is contained in:
Dan Clark
2024-11-16 19:46:25 +00:00
parent 0865e7da89
commit b5bf17821c
27 changed files with 562 additions and 58 deletions
+12
View File
@@ -0,0 +1,12 @@
using Microsoft.UI.Xaml;
using System.Diagnostics.CodeAnalysis;
namespace Toolkit.WinUI;
public interface IWindowRegistry
{
void Add(Window window);
bool TryGet<TWindow>([DisallowNull] out TWindow? window)
where TWindow : Window;
}