20 lines
331 B
C#
20 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ModelBasic
|
|
{
|
|
public class ErrDef
|
|
{
|
|
|
|
/// <summary>
|
|
/// 错误消息列表的接口
|
|
/// </summary>
|
|
public static IErrHandler<String> iErrHandler = null;
|
|
|
|
|
|
}
|
|
}
|