Files
Umbraco-CMS/src/Umbraco.Web/RenderFieldCaseType.cs
2017-07-20 11:21:28 +02:00

14 lines
295 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
}
}