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