Removing a public interface is a breaking change, in case someone is implementing the interface for some reason.
18 lines
408 B
C#
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; }
|
|
}
|
|
}
|