You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
871 B
32 lines
871 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CommonLib
|
|
{
|
|
|
|
public class ClientLogEventArgs : EventArgs
|
|
{
|
|
public string clientInfo { get; set; }
|
|
public ClientLogEventArgs(string cs)
|
|
{
|
|
clientInfo = cs;
|
|
}
|
|
}
|
|
|
|
|
|
public class RefreshMonitorEventArgs : EventArgs
|
|
{
|
|
public string RefreshObjectName { get; set; }
|
|
public string RefreshObjectInfo { get; set; }
|
|
public RefreshMonitorEventArgs(string refreshObjectName, string refreshObjectInfo)
|
|
{
|
|
RefreshObjectName = refreshObjectName;
|
|
RefreshObjectInfo = refreshObjectInfo;
|
|
}
|
|
}
|
|
|
|
public delegate void ClientLogEventHandler(ClientLogEventArgs e);
|
|
public delegate void RefreshMonitorEventHandler(RefreshMonitorEventArgs e);
|
|
}
|