15 lines
447 B
C#
15 lines
447 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
public sealed class DataListTableProcessingOptions : DataListProcessingBase
|
|
{
|
|
public List<string> Columns { get; set; }
|
|
public const int MaxPageSize = 1000;
|
|
public const int DefaultOffset = 0;
|
|
public const int DefaultLimit = 25;
|
|
public int? Offset { get; set; }
|
|
public int? Limit { get; set; }
|
|
}
|
|
} |