namespace OpenTap { /// Annotation added when a setting has a string overlay (Expression). public interface IStringOverlayAnnotation : IAnnotation { /// The current overlay value. public string OverlayString { get; set; } /// Gets the current overlay error. public string Error { get; } } }