Rootobject.cs 559 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LogForceTestApp.Modules.MainModule.Models
  7. {
  8. public class Rootobject
  9. {
  10. public bool pass { get; set; }
  11. public Process[] processes { get; set; }
  12. public object[] choice_ids { get; set; }
  13. public string control_id { get; set; }
  14. }
  15. public class Process
  16. {
  17. public string id { get; set; }
  18. public string name { get; set; }
  19. public bool pass { get; set; }
  20. }
  21. }