mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2025-12-29 03:09:02 +00:00
25 lines
602 B
C#
25 lines
602 B
C#
using System;
|
|
|
|
namespace winPEAS.Info.EventsInfo.ProcessCreation
|
|
{
|
|
internal class ProcessCreationEventInfo
|
|
{
|
|
public DateTime? CreatedAtUtc { get; set; }
|
|
public int EventId { get; set; }
|
|
public string User { get; set; }
|
|
public string Match { get; set; }
|
|
|
|
public ProcessCreationEventInfo(
|
|
DateTime? createdAtUtc,
|
|
int eventId,
|
|
string user,
|
|
string match)
|
|
{
|
|
CreatedAtUtc = createdAtUtc;
|
|
EventId = eventId;
|
|
User = user;
|
|
Match = match;
|
|
}
|
|
}
|
|
}
|