8 lines
196 B
C#
8 lines
196 B
C#
using System;
|
|
|
|
namespace AspClassic.Scripting;
|
|
|
|
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
|
|
public sealed class ParamDictionaryAttribute : Attribute
|
|
{
|
|
}
|