mirror of
https://github.com/Tribufu/TribufuDotNet
synced 2026-08-12 06:01:07 +00:00
12 lines
276 B
C#
12 lines
276 B
C#
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
namespace Tribufu.EntityFrameworkCore
|
|
{
|
|
public static class DatabaseConstants
|
|
{
|
|
public const uint DEFAULT_PAGINATION = 20;
|
|
|
|
public const uint MAX_PAGINATION = 100;
|
|
}
|
|
}
|