namespace AsterNET.Manager.Response
{
///
/// Corresponds to a ChallengeAction and contains the challenge needed to log in using challenge/response.
///
///
///
public class ChallengeResponse : ManagerResponse
{
private string challenge;
///
/// Get/Set the challenge to use when creating the key for log in.
///
///
public string Challenge
{
get { return challenge; }
set { this.challenge = value; }
}
}
}