Files
Toolkit2/Toolkit.Foundation/IContentFactory.cs
T
TheXamlGuy b155f5c6e2 wip
2024-06-12 23:04:22 +01:00

8 lines
187 B
C#

namespace Toolkit.Foundation
{
public interface IContentFactory
{
Task<object?> CreateAsync(IContentTemplateDescriptor descriptor, object[] resolvedArguments);
}
}