using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; #pragma warning disable 1591 namespace PdfiumViewer { public class PdfMatches { public int StartPage { get; private set; } public int EndPage { get; private set; } public IList Items { get; private set; } public PdfMatches(int startPage, int endPage, IList matches) { if (matches == null) throw new ArgumentNullException("matches"); StartPage = startPage; EndPage = endPage; Items = new ReadOnlyCollection(matches); } } }