I have a Json file that was deserialized from a Json Api-Call, now I have to use this file as an object in the main program.
Here is a small section of it:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Api1
{
    public class EcmSimpleField
    {
        public string value { get; set; }
        public string displayName { get; set; }
        public string internalName { get; set; }
        public string dbName { get; set; }
        public bool visible { get; set; }
        public string type { get; set; }
    }
    public class BaseParameter
    {
        public string value { get; set; }
        public string type { get; set; }
    }
    public class SystemField
    {
        public string value { get; set; }
        public string type { get; set; }
    }
How can I use this file as an object in the main program and work with it?
 
     
     
    