MVC (layered variant)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user