ProcessStepView.cs 352 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
  5. {
  6. public class ProcessStepView
  7. {
  8. public bool IsStart { get; set; }
  9. public bool IsEnd { get; set; }
  10. public int? Value { get; set; }
  11. public string Name { get; set; }
  12. }
  13. }