laatzen/Common/Utils/Logging/EventArguments/LogEventArgs.cs
2021-10-01 11:09:20 +02:00

15 lines
260 B
C#

using System;
namespace Xylem.Common.Utils.Logging.EventArguments
{
[Serializable]
public class LogEventArgs :EventArgs
{
public LogEventArgs(String text)
{
Text = text;
}
public String Text;
}
}