2026-01-16 18:26:06 +10:00
|
|
|
|
using PARR.DAL.Models;
|
|
|
|
|
|
using System.Runtime.CompilerServices;
|
2025-12-26 21:47:53 +10:00
|
|
|
|
|
|
|
|
|
|
namespace PARR.TemplateMatcher.Services.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ITemplateNameNormalizer
|
|
|
|
|
|
{
|
2026-01-16 18:26:06 +10:00
|
|
|
|
Task<string> GetNormalizedTemplateNameAsync(Template template, [CallerMemberName] string? caller = null);
|
2025-12-26 21:47:53 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|