8 lines
180 B
C#
8 lines
180 B
C#
namespace BotSharp.Abstraction.Templating;
|
|
|
|
public interface ITemplateRender
|
|
{
|
|
string Render(string template, Dictionary<string, object> dict);
|
|
void Register(Type type);
|
|
}
|