2021-11-26 15:47:11 +01:00
|
|
|
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";
|
2021-11-29 18:25:50 +01:00
|
|
|
|
|
|
|
|
public const string IdNotFound = "Could not find persisted model for the given Id";
|
2021-11-26 15:47:11 +01:00
|
|
|
}
|
|
|
|
|
}
|