From 752e7b15c59050cb254671fb3737888c842a00bc Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Sat, 15 Jun 2024 23:41:42 -0500 Subject: [PATCH] MAX_RECORD_ROWS --- src/Infrastructure/BotSharp.Abstraction/Utilities/Pagination.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Infrastructure/BotSharp.Abstraction/Utilities/Pagination.cs b/src/Infrastructure/BotSharp.Abstraction/Utilities/Pagination.cs index 9ada5f63..ad4f2e3f 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Utilities/Pagination.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Utilities/Pagination.cs @@ -37,6 +37,8 @@ public class Pagination { get { return (Page - 1) * Size; } } + + public bool ReturnTotal { get; set; } = true; } public class PagedItems