9 lines
200 B
C#
9 lines
200 B
C#
|
|
namespace Toolkit.Foundation
|
|
{
|
|
public interface IContentFactory
|
|
{
|
|
Task<object?> CreateAsync(IContentTemplateDescriptor descriptor,
|
|
object[] resolvedArguments);
|
|
}
|
|
} |