using System; using System.Collections.Generic; using System.Text; namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow { public class FlowInfoView { public string pname { get; set; } public int? num { get; set; } public int? pid { get; set; } public string url { get; set; } public int? flowtp { get; set; } public string auditnote { get; set; } public List nextactions; public FlowInfoView() { nextactions = new List(); } } }