blob: 1f408afc588b844fa2f4b061cac71d6038de539f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections.Generic;
namespace System.Web.Helpers
{
internal interface IWebGridDataSource
{
int TotalRowCount { get; }
IList<WebGridRow> GetRows(SortInfo sortInfo, int pageIndex);
}
}
|