ItemProcessReturn.cs 611 B

1234567891011121314151617181920
  1. //================================================================================
  2. //
  3. //================================================================================
  4. namespace ReaderRabbit
  5. {
  6. //================================================================================
  7. //
  8. //================================================================================
  9. public enum ItemProcessReturn
  10. {
  11. None = 0,
  12. Processed, // Use this for item start drag or stop drag.
  13. DroppedInCorrectLocation,
  14. DroppedInWrongLocation,
  15. MissingItem,
  16. Quantity
  17. }
  18. } // namespace ReaderRabbit