Files
raven/server/AyaNova/DataList/ListOptions.cs
2020-11-24 18:09:29 +00:00

29 lines
912 B
C#

using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc;
namespace AyaNova.DataList
{
public sealed class ListOptions
{
public const int MaxPageSize = 1000;
public const int DefaultOffset = 0;
public const int DefaultLimit = 25;
[FromBody]
public int? Offset { get; set; }
[FromBody]
public int? Limit { get; set; }
[FromBody, Required]
public string DataListKey { get; set; }
[FromBody]
public string ListView { get; set; }//optional, if null or empty will use default list view built into DataList
[FromBody]
public string MetaView { get; set; }//optional meta list view to integrate into the standard list view. Used by client to add "meta" filter conditions above the user's choices e.g. customer notes customer id
}
}