16 lines
287 B
C#
16 lines
287 B
C#
namespace zero.Api;
|
|
|
|
public static class ApiErrorCodes
|
|
{
|
|
public static class Categories
|
|
{
|
|
public const string Server = "server";
|
|
public const string Validation = "validation";
|
|
}
|
|
|
|
public static class Server
|
|
{
|
|
public const string Exception = "server.error";
|
|
}
|
|
}
|