Add opportunity to customize header output. Like it made with "Format" property. Or just change Header type to object. To have a way for manage output.
```
namespace System.Web.Helpers {
public class WebGridColumn {
public bool CanSort { get; set; }
public string ColumnName { get; set; }
public Func<dynamic, object> Format { get; set; }
public __object__ Header { get; set; }
public string Style { get; set; }
}
}
```
```
namespace System.Web.Helpers {
public class WebGridColumn {
public bool CanSort { get; set; }
public string ColumnName { get; set; }
public Func<dynamic, object> Format { get; set; }
public __object__ Header { get; set; }
public string Style { get; set; }
}
}
```