BlobItem
An Azure Storage blob.
            
                using System.Collections.Generic;
namespace Azure.Storage.Blobs.Models
{
    public class BlobItem
    {
        public string Name { get; set; }
        public bool Deleted { get; set; }
        public string Snapshot { get; set; }
        public string VersionId { get; set; }
        public bool? IsLatestVersion { get; set; }
        public BlobItemProperties Properties { get; set; }
        public IDictionary<string, string> Metadata { get; set; }
        public IDictionary<string, string> Tags { get; set; }
        public IList<ObjectReplicationPolicy> ObjectReplicationSourceProperties { get; set; }
        public bool? HasVersionsOnly { get; set; }
        internal BlobItem()
        {
        }
    }
}