BlobContentInfo
BlobContentInfo
            
                using System;
namespace Azure.Storage.Blobs.Models
{
    public class BlobContentInfo
    {
        public ETag ETag { get; set; }
        public DateTimeOffset LastModified { get; set; }
        public byte[] ContentHash { get; set; }
        public string VersionId { get; set; }
        public string EncryptionKeySha256 { get; set; }
        public string EncryptionScope { get; set; }
        public long BlobSequenceNumber { get; set; }
        internal BlobContentInfo()
        {
        }
    }
}