PageRangesInfo
Contains blob page range information returned from the PageBlobClient.GetPageRanges operations.
            
                using System;
using System.Collections.Generic;
namespace Azure.Storage.Blobs.Models
{
    public class PageRangesInfo
    {
        public DateTimeOffset LastModified { get; set; }
        public ETag ETag { get; set; }
        public long BlobContentLength { get; set; }
        public IEnumerable<HttpRange> PageRanges { get; set; }
        public IEnumerable<HttpRange> ClearRanges { get; set; }
        internal PageRangesInfo()
        {
        }
    }
}