namespace Galaeth.Core.Constants;
///
/// Error codes to be provided in a response.
///
public static class CoreErrorCodes
{
///
/// Unauthorised access.
///
public const string Unauthorized = "unauthorized";
///
/// The request body is missing data.
///
public const string NoDataProvided = "missing-data";
///
/// Validation failed.
///
public const string ValidationError = "validation-fail";
}