14 lines
595 B
C#
14 lines
595 B
C#
namespace AVSCartonShipmentVerifier.DTOs;
|
|
|
|
/// <summary>
|
|
/// User-facing rejection reasons (must match product copy).
|
|
/// </summary>
|
|
public static class VerificationRejectionReasons
|
|
{
|
|
public const string InvalidFormat = "Invalid format";
|
|
public const string CartonDoesNotExist = "Carton does not exist";
|
|
public const string AlreadyTransferredDuplicateScan = "Already transferred / duplicate scan";
|
|
public const string ManualEntryNotAllowed = "Manual entry is not allowed. Please scan or paste.";
|
|
public const string DatabaseOrSystemError = "Database error / system error";
|
|
}
|