/// <summary>Static getter for Content sub text</summary>
 public static string GetContentSubText(IBaseConent that)
 {
     return(that.GetPropertyValue <string>("contentSubText"));
 }
 /// <summary>Static getter for Content text</summary>
 public static IHtmlString GetContentText(IBaseConent that)
 {
     return(that.GetPropertyValue <IHtmlString>("contentText"));
 }
 /// <summary>Static getter for Page Title</summary>
 public static string GetPageTitle(IBaseConent that)
 {
     return(that.GetPropertyValue <string>("pageTitle"));
 }