tuitio/IdentityServer.Wrapper/Constants/ApiRoutes.cs

10 lines
260 B
C#
Raw Normal View History

2020-12-21 00:45:10 +02:00
namespace IdentityServer.Wrapper.Constants
{
internal struct ApiRoutes
{
public const string
Authentication = "identity/authenticate?UserName={0}&Password={1}",
Authorization = "identity/authorize?Token={0}";
}
}