Files
Toolkit2/Framework/Foundation/Templates/INamedTemplateFactory.cs
T

8 lines
128 B
C#

namespace Toolkit.Foundation
{
public interface INamedTemplateFactory
{
object? Create(string name);
}
}