introduce a TransientNavigationStore to share objects from one state to the next state

This commit is contained in:
TheXamlGuy
2024-10-08 15:12:50 +01:00
parent 12ed99f191
commit f809f3d221
9 changed files with 224 additions and 173 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
{
public interface IContentFactory
{
Task<object?> CreateAsync(IContentTemplateDescriptor descriptor,
object[] resolvedArguments);
object? Create(IContentTemplateDescriptor descriptor,
object[] parameters);
}
}