asternet/Asterisk.2013/Asterisk.NET/Manager/Event/InvalidAccountIDEvent.cs
2018-07-06 00:59:19 +03:00

16 lines
397 B
C#

namespace AsterNET.Manager.Event
{
/// <summary>
/// Raised when a request fails an authentication check due to an invalid account ID.<br />
/// </summary>
public class InvalidAccountIDEvent : ManagerEvent
{
public InvalidAccountIDEvent(ManagerConnection source)
: base(source)
{
}
public string Status { get; set; }
}
}