///
/// Interface for dialog actions or requirements that accept an "operator" attribute.
/// It places no restrictions on the values that the "operator" attribute may have.
///
public interface IDialogOperator
{
///
/// Contains the raw string value of the "operator" attribute.
///
string Operator { get; set; }
}