BlockInfo
BlockInfo.
            
                namespace Azure.Storage.Blobs.Models
{
    public class BlockInfo
    {
        public byte[] ContentHash { get; set; }
        public byte[] ContentCrc64 { get; set; }
        public string EncryptionKeySha256 { get; set; }
        public string EncryptionScope { get; set; }
        internal BlockInfo()
        {
        }
    }
}