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.
 
 
 
 

23 lines
517 B

using System;
namespace learun.wechat
{
/// <summary>
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.11.06
/// 描 述:核实属性接口
/// </summary>
public interface IVerifyAttribute
{
/// <summary>
///
/// </summary>
/// <param name="type"></param>
/// <param name="obj"></param>
/// <param name="message"></param>
/// <returns></returns>
bool Verify(Type type, object obj, out string message);
}
}