36 lines
647 B
C#
36 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pipefy
|
|
{
|
|
public class RootObject
|
|
{
|
|
public data[] Property1 { get; set; }
|
|
}
|
|
|
|
public class data
|
|
{
|
|
public Node node { get; set; }
|
|
}
|
|
|
|
public class Node
|
|
{
|
|
public Record_Fields[] record_fields { get; set; }
|
|
}
|
|
|
|
public class Record_Fields
|
|
{
|
|
public Field field { get; set; }
|
|
public string value { get; set; }
|
|
public string[] array_value { get; set; }
|
|
}
|
|
|
|
public class Field
|
|
{
|
|
public string id { get; set; }
|
|
}
|
|
}
|