using PARR.Domain.Entities; using System.Runtime.CompilerServices; namespace PARR.TemplateMatcher.Services.Interfaces { public interface ITemplateNameNormalizer { Task GetNormalizedTemplateNameAsync(Template template, [CallerMemberName] string? caller = null); } }