14 lines
308 B
C#
14 lines
308 B
C#
using System;
|
|
using System.Reflection;
|
|
|
|
namespace Alipay.AopSdk.Core.Parser
|
|
{
|
|
public class AopAttribute
|
|
{
|
|
public string ItemName { get; set; }
|
|
public Type ItemType { get; set; }
|
|
public string ListName { get; set; }
|
|
public Type ListType { get; set; }
|
|
public MethodInfo Method { get; set; }
|
|
}
|
|
} |