using PRSDesktop.WidgetGroups; using System.Windows.Controls; namespace PRSDesktop { public class DeliveredToSiteDashboardProperties : IDashboardProperties { } public class DeliveredToSiteDashboardElement : DashboardElement { } /// /// Interaction logic for DeliveredToSiteWidget.xaml /// public partial class DeliveredToSiteWidget : UserControl, IDashboardWidget { public DeliveredToSiteWidget() { InitializeComponent(); } public DeliveredToSiteDashboardProperties Properties { get; set; } public void Refresh() { } public void Setup() { } public void Shutdown() { } } }