using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StartServerWPF.Models { public class DataProModelArray { public int selectIndex { get; set; } public List dataProModels { get; set; } } public class DataProModel: BindableBase { private string name; private string dataPath; private string resultPath; private string startTime; private string endTime; public string Name { get => name; set => SetProperty(ref name, value); } public string DataPath { get => dataPath; set => SetProperty(ref dataPath, value); } public string ResultPath { get => resultPath; set => SetProperty(ref resultPath, value); } public string StartTime { get => startTime; set => SetProperty(ref startTime, value); } public string EndTime { get => endTime; set => SetProperty(ref endTime, value); } } }