using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; namespace bindings { /// /// Interaction logic for App.xaml /// public partial class App : Application { public ObservableCollection AuctionItems { get; } = new ObservableCollection(); } }