using System; namespace OpenTap { /// /// This attribute marks that an object should not be overwritten during serialization, but instead the /// value existing in the property should be used. /// [AttributeUsage(AttributeTargets.Property)] public class DeserializeInPlaceAttribute : Attribute { } }