You've already forked EventLogLoader
mirror of
https://github.com/romanlryji/EventLogLoader.git
synced 2025-12-07 23:23:44 +02:00
13 lines
259 B
C#
13 lines
259 B
C#
namespace EventLogApp
|
|
{
|
|
internal class CodeNameGuidType : CodeNameType
|
|
{
|
|
public string Guid;
|
|
|
|
public CodeNameGuidType(long code, string name, string guid) : base(code, name)
|
|
{
|
|
this.Guid = guid;
|
|
}
|
|
}
|
|
}
|