mirror of
https://github.com/peass-ng/PEASS-ng.git
synced 2026-07-30 23:50:27 -07:00
13 lines
397 B
C#
13 lines
397 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace winPEAS.Native.Structs
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
public struct DSREG_USER_INFO
|
|
{
|
|
[MarshalAs(UnmanagedType.LPWStr)] public string UserEmail;
|
|
[MarshalAs(UnmanagedType.LPWStr)] public string UserKeyId;
|
|
[MarshalAs(UnmanagedType.LPWStr)] public string UserKeyName;
|
|
}
|
|
}
|