From 0b757ef63e530ac16b5d94060a4178dd6397ad2a Mon Sep 17 00:00:00 2001 From: "T.M" Date: Tue, 16 Mar 2021 00:44:56 +0100 Subject: [PATCH] adding `IReadOnlyList` interface to `IPagedList` closes #204 --- src/X.PagedList/IPagedList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/X.PagedList/IPagedList.cs b/src/X.PagedList/IPagedList.cs index a2441a17..ac46fea2 100644 --- a/src/X.PagedList/IPagedList.cs +++ b/src/X.PagedList/IPagedList.cs @@ -10,7 +10,7 @@ namespace X.PagedList /// /// The type of object the collection should contain. /// - public interface IPagedList : IPagedList, IEnumerable + public interface IPagedList : IPagedList, IReadOnlyList, IEnumerable { /// /// Gets the element at the specified index.