diff options
| author | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-12-29 09:41:56 +0100 |
|---|---|---|
| committer | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-12-29 09:41:56 +0100 |
| commit | 79f5eaf40b93d64be74d8b4f1ef80d19fadbfbe1 (patch) | |
| tree | ddf121e78bdd50673379b223abfdb448c4f81291 /CoreWiki/Pages/All.cshtml.cs | |
| parent | 1a96616699ab41bf6343bc1acc45a836c3e6caf3 (diff) | |
Diffstat (limited to 'CoreWiki/Pages/All.cshtml.cs')
| -rw-r--r-- | CoreWiki/Pages/All.cshtml.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CoreWiki/Pages/All.cshtml.cs b/CoreWiki/Pages/All.cshtml.cs index c41e216..d54e75b 100644 --- a/CoreWiki/Pages/All.cshtml.cs +++ b/CoreWiki/Pages/All.cshtml.cs @@ -14,7 +14,7 @@ public class All : PageModel public int PageNumber { get; set; } = 1; [BindProperty(SupportsGet = true)] public int PageSize { get; set; } = 25; - public IEnumerable<Article>? Articles { get; set; } + public IEnumerable<Article> Articles { get; set; } public int TotalPages { get; set; } public All(ApplicationDbContext context) |
