1
0
mirror of https://github.com/romanlryji/EventLogLoader.git synced 2025-12-07 23:23:44 +02:00
Files
EventLogLoader/EventLogApp/EventElements/CodeNameGuidType.cs
2019-10-02 11:18:07 +03:00

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