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

10 lines
165 B
C#
Raw Normal View History

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