DynamicApiControllerAttribute.cs 284 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 using NCC.Dependency; using System; namespace NCC.DynamicApiController { /// <summary> /// 动态 WebApi 特性 /// </summary> [SuppressSniffer, AttributeUsage(AttributeTargets.Class)] public sealed class DynamicApiControllerAttribute : Attribute { } }