Files
Toolkit2/Toolkit.Foundation/IContentFactory.cs
T
2024-06-15 18:37:02 +01:00

9 lines
200 B
C#

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