namespace Lithnet.CredentialProvider
{
///
/// A representation of a set of credentials to serialize back to LogonUI/CredUI. Consider using the class, which uses a SecureString for the password.
///
public class CredentialResponseInsecure : CredentialResponseBase
{
///
/// The plain-text password of the user who's credentials are to be serialized
///
public string Password { get; set; }
}
}