BlobTraits
Specifies trait information to be included when listing blobs with the
             GetBlobsAsync and
             GetBlobsByHierarchyAsync
            operations.
            
                using System;
namespace Azure.Storage.Blobs.Models
{
    [Flags]
    public enum BlobTraits
    {
        None = 0,
        CopyStatus = 1,
        Metadata = 2,
        Tags = 4,
        ImmutabilityPolicy = 8,
        LegalHold = 16,
        All = -1
    }
}