11 lines
225 B
C#
11 lines
225 B
C#
namespace MVC_SimpleCRUD_Layered.Application.Models;
|
|
|
|
public class PagingSettings
|
|
{
|
|
public const string SectionName = "Paging";
|
|
|
|
public int PageSize { get; set; } = 20;
|
|
|
|
public int PageOffset { get; set; } = 5;
|
|
}
|