Files
mixtape/zero.Api/ApiErrorCodes.cs
T
2021-12-14 01:23:03 +01:00

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";
}
}