選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IAttribute.cs 171 B

4年前
123456789
  1. using System;
  2. namespace Learun.Application.WeChat
  3. {
  4. public interface IVerifyAttribute
  5. {
  6. bool Verify(Type type, object obj,out string message);
  7. }
  8. }