Files
xIdentityService/Constants/XAuthenticationScheme.cs
T
2024-01-25 04:44:02 +03:30

9 lines
221 B
C#

using xExceptions.Attributes;
namespace xIdentityService.Constants {
public enum XAuthenticationScheme {
[StringValue ("token")]
XToken, [StringValue ("introspection")]
XIntrospection,
}
}