Files
xIdentityService/Constants/XAuthenticationScheme.cs
T
2026-07-24 23:12:04 +03:30

10 lines
230 B
C#

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