Ensure containers show up in the menu when they are created

This commit is contained in:
TheXamlGuy
2024-05-12 17:09:59 +01:00
parent 4171a31f85
commit 5292896e13
6 changed files with 33 additions and 8 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Toolkit.Foundation;
public interface IValueStore<T>
{
T? Value { get; }
void Set(T value);
}