StockSelectionPageOptions.cs 543 B

1234567891011121314151617
  1. using System;
  2. namespace PRS.Mobile
  3. {
  4. public class StockSelectionPageOptions
  5. {
  6. public Guid[] ExcludeLocations { get; set; } = { };
  7. public bool MultiSelect { get; set; } = false;
  8. public bool AllowAdd { get; set; } = true;
  9. public bool ShowFavourites { get; set; } = true;
  10. public String Title { get; set; } = "Select Location";
  11. public bool DisplayStockTakeInfo { get; set; } = false;
  12. public bool IncludeInactive { get; set; }
  13. public bool PullToRefresh { get; set; }
  14. }
  15. }