15 lines
260 B
C#
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;
|
|
}
|
|
}
|