public bool Equals(BlobConfig other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     return(StorageDisplayName.Equals(other.StorageDisplayName));
 }
 public override int GetHashCode()
 {
     return(StorageDisplayName.GetHashCode());
 }