Files
parr_api/PARR.EsppTemplateSync/Services/IParserService.cs

9 lines
148 B
C#
Raw Normal View History

2023-08-25 15:32:06 +10:00
namespace PARR.EsppTemplateSync.Services
{
internal interface IParserService
{
2023-08-31 12:04:05 +10:00
Task<bool> ParseStringAsync(string str);
2023-08-25 15:32:06 +10:00
}
}