// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph.Core.Models { using System; using System.Collections.Generic; /// /// Concrete implementation of the IUploadSession interface /// internal class UploadSession : IUploadSession { /// /// Expiration date of the upload session /// public DateTimeOffset? ExpirationDateTime { get; set; } /// /// The ranges yet to be uploaded to the server /// public IEnumerable NextExpectedRanges { get; set; } /// /// The URL for upload /// public string UploadUrl { get; set; } } }