using System.Security;
namespace Lithnet.CredentialProvider
{
///
/// A representation of a set of credentials to serialize back to LogonUI/CredUI.
///
public class CredentialResponseSecure : CredentialResponseBase
{
///
/// The password of the user who's credentials are to be serialized
///
public SecureString Password { get; set; }
}
}