/// <summary> /// Initializes a new instance of the <see cref="TemplateAction"/> class. /// </summary> /// <param name="actionType">Type of the action.</param> /// <param name="source">The source.</param> /// <param name="target">The target.</param> public TemplateAction(TemplateRule parent, string actionType, string source, string target) : this(parent) { this.ActionType = actionType; this.Source = source; this.Target = target; }
/// <summary> /// Initializes a new instance of the <see cref="TemplateAction"/> class. /// </summary> public TemplateAction(TemplateRule parent) { this.Parent = parent; }