You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1013 B
C#

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<DataProModel> 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); }
}
}