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