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