using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
string result = "{\"code\":1,\"msg\":null,\"data\":{\"Response\":[{\"Product\":\"Activ Health\",\"Plan\":\"Platinum - Enhanced\",\"DCNNumber\":\"2020050620DLDEL013\",\"QuotationNumber\":\"20200506421270002501\",\"ClientCode\":\"1280185\",\"BusinessType\":\"NEW BUSINESS\",\"IntermediaryCode\":\"2100653\",\"SMCode\":\"309468\",\"SMName\":\"Akhil Jain\",\"vchProposalType\":\"Policy\",\"ProposalDate\":\"06/05/2020\",\"ProposalReciveDate\":\"06/05/2020 00:00\",\"ProposalNumber\":\"1100018654\",\"PolicyNumber\":\"11-20-0000544-00\",\"PolicyTenure\":\"1 Year\",\"PolicyStartDate\":\"21/06/2019 11:15\",\"PolicyEndDate\":\"20/06/2020\",\"SumInsuredType\":\"Individual\",\"MemberTypeDesc\":\"2 Adults + 1 Kid\",\"OfficeName\":\"Delhi NSP\",\"ProposalCreatedDate\":\"06/05/2020\",\"TPACode\":\"\",\"TPAName\":\"\",\"ProposalStatus\":\"IF\",\"MemberId\":\"128018511\",\"ProposerDOB\":\"03/03/1989\",\"ProposalMobileNo\":\"9898888777\",\"Policy_Type\":\"R\",\"HealthReturn\":\"Y\",\"FitnessAssessment\":\"Y\",\"WellnesCoach\":\"Y\",\"DRM\":\"N\",\"HealthAssessment\":\"Y\",\"RenewableFlag\":\"Yes\",\"RenewedFlag\":\"No\",\"LapsedFlag\":\"Yes\",\"Policy_Expired\":\"Yes\",\"showRenewButton\":false,\"EW_Policy\":\"N\"}]},\"error\":null,\"Message\":null,\"StatusCode\":null}";
var encryptedData = JsonConvert.DeserializeObject<OutputModel>(result);
Console.WriteLine(encryptedData.data.Response.FirstOrDefault().Product);
public class HISmmaryOutputModel
public string Product { get; set; }
public string Plan { get; set; }
public string DCNNumber { get; set; }
public string QuotationNumber { get; set; }
public string ClientCode { get; set; }
public string BusinessType { get; set; }
public string IntermediaryCode { get; set; }
public string SMCode { get; set; }
public string SMName { get; set; }
public string vchProposalType { get; set; }
public string ProposalDate { get; set; }
public string ProposalReciveDate { get; set; }
public string ProposalNumber { get; set; }
public string PolicyNumber { get; set; }
public string PolicyTenure { get; set; }
public string PolicyStartDate { get; set; }
public string PolicyEndDate { get; set; }
public string SumInsuredType { get; set; }
public string MemberTypeDesc { get; set; }
public string OfficeName { get; set; }
public string ProposalCreatedDate { get; set; }
public string TPACode { get; set; }
public string TPAName { get; set; }
public string ProposalStatus { get; set; }
public string MemberId { get; set; }
public string ProposerDOB { get; set; }
public string ProposalMobileNo { get; set; }
public string Policy_Type { get; set; }
public string HealthReturn { get; set; }
public string FitnessAssessment { get; set; }
public string WellnesCoach { get; set; }
public string DRM { get; set; }
public string HealthAssessment { get; set; }
public string RenewableFlag { get; set; }
public string RenewedFlag { get; set; }
public string LapsedFlag { get; set; }
public string Policy_Expired { get; set; }
public bool showRenewButton { get; set; }
public string EW_Policy { get; set; }
public List<Response> Response { get; set; }
public class OutputModel {
public int code { get; set; }
public object msg { get; set; }
public Data data { get; set; }
public object error { get; set; }
public object Message { get; set; }
public object StatusCode { get; set; }