using System; using System.Collections.Generic; namespace Model.Models { /// /// 程序纯数据类(对应 UIShare.UIViewModel.ProgramModel) /// public class Program { public Guid ID { get; set; } = Guid.NewGuid(); public IList StepCollection { get; set; } = new List(); public IList ErrorStepCollection { get; set; } = new List(); public IList Parameters { get; set; } = new List(); } }