Create ChallengeResponseFailedEvent.cs

This commit is contained in:
DaveTTS 2017-05-03 15:50:00 +01:00 committed by GitHub
parent 79225ac04d
commit a50e9a0270

View file

@ -0,0 +1,16 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// Raised when a request's attempt to authenticate has been challenged, and the request failed the authentication challenge.<br />
/// </summary>
public class ChallengeResponseFailedEvent : ManagerEvent
{
public ChallengeResponseFailedEvent(ManagerConnection source)
: base(source)
{
}
public string Status { get; set; }
}
}