ln.templates/ln.templates/ITemplateResolver.cs

13 lines
223 B
C#

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