namespace AVSCartonShipmentVerifier.DTOs; /// /// User-facing rejection reasons (must match product copy). /// 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"; }