using System;
namespace OpenTap
{
///
/// Indicates that a property on a (a step setting) should be a External Parameter by default when added into Test Plan editor UI.
///
public class ExternalParameterAttribute : Attribute
{
///
/// The name of the parameter.
///
public string Name { get; private set; }
///
/// Create a new instance of ExternalParameterAttribute.
/// To be used on TestStep properties to indicates that it will be automatically added into External Parameter list when TestStep added into the test plan editor.
///
/// The name of the parameter.
public ExternalParameterAttribute(string Name = null)
{
this.Name = Name;
}
}
}