19 lines
466 B
C#
19 lines
466 B
C#
namespace Nocr.Users.Api.Contracts;
|
|
|
|
public static class WebRoutes
|
|
{
|
|
public const string BasePath = "/api";
|
|
|
|
public static class Users
|
|
{
|
|
public const string Path = BasePath + "/" + "users";
|
|
|
|
public const string ById = "{id}";
|
|
|
|
public const string ByIdentity = "identity";
|
|
|
|
public const string BlockBot = "{id}/block-bot";
|
|
|
|
public const string UnblockBot = "{id}/unblock-bot";
|
|
}
|
|
} |