Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Parser/AopAttribute.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +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; }
}
}