Files
Umbraco-CMS/src/Umbraco.Web/RenderFieldCaseType.cs
2018-06-29 19:52:40 +02:00

14 lines
282 B
C#

namespace Umbraco.Web
{
/// <summary>
/// Used in the .Field method when rendering an Umbraco field to specify what case type it should be
/// </summary>
public enum RenderFieldCaseType
{
Upper,
Lower,
Title,
Unchanged
}
}