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
+9
View File
@@ -0,0 +1,9 @@
namespace Toolkit.Foundation;
public class ValueStore<T> :
IValueStore<T>
{
public T? Value { get; private set; }
public void Set(T value) => Value = value;
}