Initial commit

This commit is contained in:
Ryan Newington
2023-01-28 21:15:17 +11:00
parent eb7b6fa4eb
commit 52e75c1748
90 changed files with 7306 additions and 0 deletions
@@ -0,0 +1,13 @@
namespace Lithnet.CredentialProvider
{
/// <summary>
/// A representation of a set of credentials to serialize back to LogonUI/CredUI. Consider using the <see cref="CredentialResponseSecure"/> class, which uses a SecureString for the password.
/// </summary>
public class CredentialResponseInsecure : CredentialResponseBase
{
/// <summary>
/// The plain-text password of the user who's credentials are to be serialized
/// </summary>
public string Password { get; set; }
}
}