// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { using System.Collections.Generic; /// /// Interface for collection pages. /// /// The type of the collection. public interface ICollectionPage : IList { /// /// The current page of the collection. /// IList CurrentPage { get; } /// /// The additional data property bag. /// IDictionary AdditionalData { get; set; } } }