protected bool Equals(PropertySlim other)
 {
     return(PropertyEditorAlias.Equals(other.PropertyEditorAlias) && Equals(Value, other.Value));
 }
 protected bool Equals(EntityProperty other)
 {
     return(PropertyEditorAlias.Equals(other.PropertyEditorAlias) && string.Equals(Value, other.Value));
 }