It it now possible to create/edit item contents

This commit is contained in:
TheXamlGuy
2024-06-06 20:42:24 +01:00
parent cc79be9acc
commit 85a5ee078d
5 changed files with 18 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Toolkit.Foundation;
public class Query
{
public static QueryEventArgs<TValue> As<TValue>(TValue value) =>
new(value);
public static QueryEventArgs<TValue> As<TValue>() where TValue : new() =>
new(new TValue());
}