10 lines
260 B
C#
10 lines
260 B
C#
|
namespace IdentityServer.Wrapper.Constants
|
|||
|
{
|
|||
|
internal struct ApiRoutes
|
|||
|
{
|
|||
|
public const string
|
|||
|
Authentication = "identity/authenticate?UserName={0}&Password={1}",
|
|||
|
Authorization = "identity/authorize?Token={0}";
|
|||
|
}
|
|||
|
}
|