Adds initial support for reading parameters passed to consent UI

This commit is contained in:
Ryan Newington
2023-11-11 16:09:12 +11:00
parent d5b3b24870
commit 28de11ee97
35 changed files with 952 additions and 19 deletions
@@ -0,0 +1,11 @@
namespace Lithnet.CredentialProvider
{
internal class ConsentUICommandLineArgs
{
public uint AppInfoProcessId { get; set; }
public int Size { get; set; }
public long Address { get; set; }
}
}