using System; using System.ComponentModel; namespace PRS.Mobile { public class StockLocationShellEventArgs : CancelEventArgs { public StockLocationShell[] Locations { get; private set; } public StockLocationShellEventArgs(params StockLocationShell[] locations) { Locations = locations; } } public delegate void StockLocationShellEvent(object sender, StockLocationShellEventArgs args); }