summaryrefslogtreecommitdiff
path: root/external/aspnetwebstack/src/System.Web.Helpers/WebGrid/WebGridColumn.cs
blob: 62eebdc3e818a802b75535fd387189778fc7ec4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

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 string Header { get; set; }

        public string Style { get; set; }
    }
}