0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 02:21:40 +00:00
ryujinx-fork/Ryujinx.Common/Logging/LogEventArgs.cs

19 lines
No EOL
461 B
C#

using System;
namespace Ryujinx.Common.Logging
{
public class LogEventArgs : EventArgs
{
public LogLevel Level { get; private set; }
public TimeSpan Time { get; private set; }
public string Message { get; private set; }
public LogEventArgs(LogLevel Level, TimeSpan Time, string Message)
{
this.Level = Level;
this.Time = Time;
this.Message = Message;
}
}
}