mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-07-10 04:20:23 +02:00
16 lines
423 B
Plaintext
16 lines
423 B
Plaintext
|
|
namespace PowerToys
|
||
|
|
{
|
||
|
|
namespace FileLocksmithLib
|
||
|
|
{
|
||
|
|
namespace Interop
|
||
|
|
{
|
||
|
|
[default_interface] runtimeclass ProcessResult {
|
||
|
|
ProcessResult(String name, UInt32 pid, String user, String[] files);
|
||
|
|
String name{ get; };
|
||
|
|
UInt32 pid{ get; };
|
||
|
|
String user{ get; };
|
||
|
|
String[] files{ get; };
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|