11 lines
326 B
C#
11 lines
326 B
C#
namespace zero.Backoffice.Configuration;
|
|
|
|
public static class BackofficeConstants
|
|
{
|
|
public static class HttpErrors
|
|
{
|
|
public const string NoIdMatchOnUpdate = "The Id as part of the URL does not match the Id of the model";
|
|
|
|
public const string IdNotFound = "Could not find persisted model for the given Id";
|
|
}
|
|
} |