// ------------------------------------------------------------------------------ // 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; using System.Collections.Generic; /// /// The IUploadSession interface /// public interface IUploadSession { /// /// Expiration date of the upload session /// DateTimeOffset? ExpirationDateTime { get; set; } /// /// The ranges yet to be uploaded to the server /// IEnumerable NextExpectedRanges { get; set; } /// /// The URL for upload /// string UploadUrl { get; set; } } }