U can use the Newtonsoft lib to deserialize:
using System;
using Newtonsoft.Json; //JSON Lib
public class Program {
public static void Main(string[] args)
{
string jsonString = "{\"status\": \"Active\",\"activatedOn\": \"2021-02-09T00:00:00\",\"licenseType\": \"Production\"}"...
U can access these properties directly within the methods or properties of the API class.
public class Api{
public string source { get; set; }
public int max_verz { get; set; }
public int rest_verz { get; set; }
// Here we create the constructor
public Api(string source...