| 1234567891011121314151617 |
- using System;
- namespace PRS.Mobile
- {
- public class StockSelectionPageOptions
- {
- public Guid[] ExcludeLocations { get; set; } = { };
- public bool MultiSelect { get; set; } = false;
- public bool AllowAdd { get; set; } = true;
- public bool ShowFavourites { get; set; } = true;
- public String Title { get; set; } = "Select Location";
- public bool DisplayStockTakeInfo { get; set; } = false;
- public bool IncludeInactive { get; set; }
- public bool PullToRefresh { get; set; }
- }
- }
|