From af9056156b9715568525de58f3ba57f331f67563 Mon Sep 17 00:00:00 2001
From: Zach Sanford <sanfordzachary@gmail.com>
Date: Tue, 13 Jun 2023 11:19:34 -0700
Subject: [PATCH] The nextPage variable has changed from an Int32 value to a
 String value. Resulted in breaking NewsScout. Fixed issue with the nextPage
 value.

---
 NewsScout.Source/Models/ApiResponse.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NewsScout.Source/Models/ApiResponse.cs b/NewsScout.Source/Models/ApiResponse.cs
index 8b41cb1..482dd57 100644
--- a/NewsScout.Source/Models/ApiResponse.cs
+++ b/NewsScout.Source/Models/ApiResponse.cs
@@ -5,7 +5,7 @@ public class ApiResponse
         public string? Status { get; set; }
         public int? TotalResults { get; set; }
         public Result[]? Results { get; set; }
-        public int? NextPage { get; set; }
+        public string? NextPage { get; set; }
     }
 
     public class Result