ln.templates/ln.templates/TemplateProvider.cs

9 lines
146 B
C#
Raw Normal View History

2020-11-18 00:25:16 +01:00
using System;
namespace ln.templates
{
public interface TemplateProvider
{
Template FindTemplate(string templatePath);
}
}