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