1234567891011121314151617181920 |
- //================================================================================
- //
- //================================================================================
- namespace ReaderRabbit
- {
- //================================================================================
- //
- //================================================================================
- public enum ItemProcessReturn
- {
- None = 0,
- Processed, // Use this for item start drag or stop drag.
- DroppedInCorrectLocation,
- DroppedInWrongLocation,
- MissingItem,
- Quantity
- }
-
- } // namespace ReaderRabbit
|