ln.http.api/ln.http.api/attributes/ArgumentSource.cs

14 lines
206 B
C#

using System;
namespace ln.http.api.attributes
{
[Flags]
public enum ArgumentSource : int{
AUTO = -1,
CONTENT = (1<<0),
PARAMETER = (1<<1),
HEADER = (1<<2)
}
}