using System;
using System.Collections.Generic;
using System.Text;
namespace AsterNET.Manager.Event
{
public class VarSetEvent : ManagerEvent
{
private string variable_name;
private string variable_value;
private string file;
private string func;
private int line;
private int sequencenumber;
public VarSetEvent(ManagerConnection source)
: base(source)
{
}
public string File
{
get { return file; }
set { file = value; }
}
public string Func
{
get { return func; }
set { func = value; }
}
public int Line
{
get { return line; }
set { line = value; }
}
public int SequenceNumber
{
get { return sequencenumber; }
set { sequencenumber = value; }
}
///
/// Get/Set the name of variable.
///
public string Variable
{
get { return variable_name; }
set { variable_name = value; }
}
///
/// Get/Set value of variable.
///
public string Value
{
get { return variable_value; }
set { variable_value = value; }
}
}
}