20200126_BDDM_upperpc/SimpleServer/CommonHelper.cs
2023-07-27 10:53:17 +08:00

14 lines
230 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SimpleServer
{
public delegate void DlgOneParam<T>(T param);
public delegate void DlgNoParam();
public class CommonHelper
{
}
}