public override bool Equals(object obj)
 {
     return(obj is Compressed other &&
            base.Equals(other) &&
            Header.Equals(other.Header) &&
            Data.Equals(other.Data));
 }