mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2025-06-15 18:04:18 +00:00
13 lines
265 B
C#
13 lines
265 B
C#
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
namespace Tribufu.Database
|
|
{
|
|
public static class DatabaseConstants
|
|
{
|
|
public const uint DEFAULT_PAGINATION = 20;
|
|
|
|
public const uint MAX_PAGINATION = 100;
|
|
}
|
|
}
|