10 lines
230 B
C#
10 lines
230 B
C#
using xExceptions.Attributes;
|
|
|
|
namespace xIdentityService.Constants {
|
|
public enum XAuthenticationScheme {
|
|
[StringValue ("token")]
|
|
XToken,
|
|
[StringValue ("introspection")]
|
|
XIntrospection,
|
|
}
|
|
} |