Files
parr_api/PARR.EsppTemplateSync/Services/IParserService.cs
Mikhail Kuznetsov 21eb83a50f table Template
2023-09-01 12:40:41 +10:00

10 lines
175 B
C#

using PARR.DAL.Models;
namespace PARR.EsppTemplateSync.Services
{
internal interface IParserService
{
Task<Template> ParseStringAsync(string str);
}
}