Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Parser/AopAttribute.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

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; }
}
}