1
0
mirror of https://github.com/romanlryji/EventLogLoader.git synced 2025-12-07 23:23:44 +02:00
Files
EventLogLoader/EventLogApp/EventElements/EventType.cs

10 lines
173 B
C#
Raw Normal View History

2019-10-02 11:18:07 +03:00
namespace EventLogApp
{
internal class EventType : CodeNameType
{
public EventType(long code, string name) : base(code, name)
{
}
}
}