🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
486 B
C#
17 lines
486 B
C#
using System.Collections.Frozen;
|
|
|
|
namespace Umbraco.Cms.Core.Strings;
|
|
|
|
/// <summary>
|
|
/// Loads character mappings from JSON files.
|
|
/// </summary>
|
|
public interface ICharacterMappingLoader
|
|
{
|
|
/// <summary>
|
|
/// Loads all mapping files and returns combined FrozenDictionary.
|
|
/// Higher priority mappings override lower priority.
|
|
/// </summary>
|
|
/// <returns>Frozen dictionary of character to string mappings.</returns>
|
|
FrozenDictionary<char, string> LoadMappings();
|
|
}
|