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