新框架PC后端代码(祈禧6月初版本)
lg
4 天以前 9818c99cf8b660d5cc29c4f404b642c2f361df3c
1
2
3
4
5
6
7
8
9
10
11
12
namespace Gs.Toolbox.ApiCore.Abstract;
 
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class CustomDependenceAttribute : Attribute
{
    public CustomDependenceAttribute(Type type)
    {
        DependType = type;
    }
 
    public Type DependType { get; set; }
}