Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Parser/AopAttribute.cs

14 lines
308 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}