Files
privilege-escalation-awesom…/winPEAS/winPEASexe/winPEAS/Info/EventsInfo/ProcessCreation/ProcessCreationEventInfo.cs
2022-12-23 00:45:23 -05:00

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;
}
}
}