10 lines
222 B
C#
10 lines
222 B
C#
namespace Inspectron.Epson.Templates.Storage;
|
|
|
|
public interface ITemplateStorage
|
|
{
|
|
string? Load(string templatePath);
|
|
bool Exists(string templatePath);
|
|
void Reload();
|
|
IEnumerable<string> ListTemplates();
|
|
}
|