using System; using System.Collections.Generic; using System.Text; namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow { public class ProcessStepView { public bool IsStart { get; set; } public bool IsEnd { get; set; } public int? Value { get; set; } public string Name { get; set; } } }