ln.templates/ln.templates/html/ITemplateSource.cs

12 lines
209 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ln.templates.html
{
public interface ITemplateSource
{
TemplateDocument GetTemplateByPath(string path);
}
}