Files
mixtape/zero.Api/ApiErrorCodes.cs
T

16 lines
287 B
C#
Raw Normal View History

2021-12-14 01:23:03 +01:00
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";
}
}