using System;
namespace LANCommander.Interposer.Events
{
///
/// Data for identity query events (GetUserName, GetComputerName).
///
public sealed class IdentityEventArgs : EventArgs
{
/// "USERNAME" or "COMPUTERNAME".
public string IdentityType { get; }
/// The value returned to the caller.
public string Value { get; }
internal IdentityEventArgs(string identityType, string value)
{
IdentityType = identityType;
Value = value;
}
}
}