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

12 lines
209 B
C#
Raw Normal View History

2020-11-18 00:25:16 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ln.templates.html
{
public interface ITemplateSource
{
TemplateDocument GetTemplateByPath(string path);
}
}