Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/CharItem.cs
Mole 338bbdd382 Reintroduce IChar interface
Removing a public interface is a breaking change, in case someone is implementing the interface for some reason.
2021-12-21 10:36:25 +01:00

18 lines
408 B
C#

using Umbraco.Cms.Core.Configuration.UmbracoSettings;
namespace Umbraco.Cms.Core.Configuration.Models
{
public class CharItem : IChar
{
/// <summary>
/// The character to replace
/// </summary>
public string Char { get; set; }
/// <summary>
/// The replacement character
/// </summary>
public string Replacement { get; set; }
}
}