public bool Equals(MonoBehaviourPropertyWithValue other)
 {
     return(Property.Equals(other.Property) && Value.Equals(other.Value));
 }
 public bool Equals(MonoBehaviourPropertyWithFile other)
 {
     return(Property.Equals(other.Property) && File.Equals(other.File));
 }