12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LogForceTestApp.Modules.MainModule.Models
- {
- public class Rootobject
- {
- public bool pass { get; set; }
- public Process[] processes { get; set; }
- public object[] choice_ids { get; set; }
- public string control_id { get; set; }
- }
- public class Process
- {
- public string id { get; set; }
- public string name { get; set; }
- public bool pass { get; set; }
- }
- }
|