Files
mixtape/zero.Backoffice/Configuration/BackofficeConstants.cs
T
2021-11-29 18:25:50 +01:00

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