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

10 lines
182 B
C#
Raw Normal View History

using PARR.EsppTemplateSync.Domain;
2023-09-01 12:40:41 +10:00
namespace PARR.EsppTemplateSync.Services
2023-08-25 15:32:06 +10:00
{
internal interface IParserService
{
EsppTemplate? ParseString(string str);
2023-08-25 15:32:06 +10:00
}
}