You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
345 B
19 lines
345 B
namespace Connected.Components;
|
|
|
|
public class TableState
|
|
{
|
|
public int Page { get; set; }
|
|
|
|
public int PageSize { get; set; }
|
|
|
|
public string SortLabel { get; set; }
|
|
|
|
public SortDirection SortDirection { get; set; }
|
|
}
|
|
|
|
public class TableData<T>
|
|
{
|
|
public IEnumerable<T> Items { get; set; }
|
|
public int TotalItems { get; set; }
|
|
}
|