2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Response
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
public class ExtensionStateResponse : ManagerResponse
|
|
|
|
{
|
|
|
|
private string context;
|
|
|
|
private string exten;
|
|
|
|
private string hint;
|
|
|
|
private int status;
|
|
|
|
|
|
|
|
public string Exten
|
|
|
|
{
|
|
|
|
get { return exten; }
|
|
|
|
set { this.exten = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Context
|
|
|
|
{
|
|
|
|
get { return context; }
|
|
|
|
set { this.context = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Hint
|
|
|
|
{
|
|
|
|
get { return hint; }
|
|
|
|
set { this.hint = value; }
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
public int Status
|
|
|
|
{
|
|
|
|
get { return status; }
|
|
|
|
set { this.status = value; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|