/// <summary>
 /// Only needed if the camelCase name of the property is not the same as the umbraco property alias
 /// </summary>
 /// <param name="name"></param>
 public UmbracoRichTextPropertyAttribute(string name) : base(name)
 {
     TypeHandler = new RichTextTypeHandler();
 }
 public UmbracoRichTextPropertyAttribute()
 {
     TypeHandler = new RichTextTypeHandler();
 }