using System;
namespace OpenTap
{
/// Specialization of that represents a reference to a setting on another TestStep.
public interface ISettingReferenceIconAnnotation : IIconAnnotation
{
///
/// The TestStep that holds the setting beeing referenced
///
Guid TestStepReference { get; }
///
/// The name of the setting being referenced
///
string MemberName { get; }
}
}