ln.templates/TemplateProvider.cs

9 lines
146 B
C#
Raw Normal View History

2019-02-14 09:17:05 +01:00
using System;
namespace ln.templates
{
2019-02-14 16:44:33 +01:00
public interface TemplateProvider
2019-02-14 09:17:05 +01:00
{
2019-02-14 16:44:33 +01:00
Template FindTemplate(string templatePath);
2019-02-14 09:17:05 +01:00
}
}