using Prism.Mvvm; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LogoForceTestApp.Modules.MainModule.Models { public class ProductModel : BindableBase { private string _Name; public string Name { get { return _Name; } set { SetProperty(ref _Name, value); } } private int _NameNumber; public int NameNumber { get { return _NameNumber; } set { SetProperty(ref _NameNumber, value); } } private ObservableCollection _QuestionType1; public ObservableCollection QuestionType1 { get { return _QuestionType1; } set { SetProperty(ref _QuestionType1, value); } } private ObservableCollection _QuestionType2; public ObservableCollection QuestionType2 { get { return _QuestionType2; } set { SetProperty(ref _QuestionType2, value); } } private ObservableCollection _QuestionType3; public ObservableCollection QuestionType3 { get { return _QuestionType3; } set { SetProperty(ref _QuestionType3, value); } } public ProductModel() { QuestionType1 = new ObservableCollection(); QuestionType2 = new ObservableCollection(); QuestionType3 = new ObservableCollection(); } } }