table Template

This commit is contained in:
Mikhail Kuznetsov
2023-09-01 12:40:41 +10:00
parent d6f1752465
commit 21eb83a50f
11 changed files with 1173 additions and 8 deletions

View File

@@ -1,8 +1,9 @@
namespace PARR.EsppTemplateSync.Services
using PARR.DAL.Models;
namespace PARR.EsppTemplateSync.Services
{
internal interface IParserService
{
Task<bool> ParseStringAsync(string str);
Task<Template> ParseStringAsync(string str);
}
}