Files
SGU-CredentialProvider/src/Lithnet.CredentialProvider/Interop/KerberosInteractiveUnlockLogon.cs
T
2023-01-28 21:15:17 +11:00

16 lines
394 B
C#

using System.Runtime.InteropServices;
namespace Lithnet.CredentialProvider.Interop
{
[StructLayout(LayoutKind.Sequential)]
internal struct KerberosInteractiveUnlockLogon
{
public KerbLogonSubmitType SubmitType;
public LsaStringUni LogonDomainName;
public LsaStringUni Username;
public LsaStringUni Password;
public long LoginId;
}
}