using System.Collections.Generic;
public static void Main()
""48ce0e9a-ee27-4e7b-93a5-4f219974f62c"": {
""FRONT"": ""https://123avb.jpg"",
""INSIDE_TOP"": ""https://456ihn.jpg"",
""INSIDE_BOTTOM"": ""https://987ung.jpg"",
""BACK"": ""https://ikh980.jpg""
""primary"": ""https://iifuer.pdf"",
""secondary"": ""https://09e491.pdf""
""d767e1a6-7afe-4d17-85f7-d512a0ca0b14"": {
""FRONT"": ""https://0ff7cc7.jpg"",
""BACK"": ""https://64e7a8.jpg""
""primary"": ""https://73fbdc.pdf""
var verificationResult = JsonConvert.DeserializeObject<Dictionary<string, G1>>(Jsontring);
foreach (var kvp in verificationResult)
Console.WriteLine("Key: " + kvp.Key);
Console.WriteLine("Preview - Front: " + kvp.Value.Preview.Front);
Console.WriteLine("Preview - Inside Top: " + kvp.Value.Preview.InsideTop);
Console.WriteLine("Preview - Inside Bottom: " + kvp.Value.Preview.InsideBottom);
Console.WriteLine("Preview - Back: " + kvp.Value.Preview.Back);
Console.WriteLine("Print - Primary: " + kvp.Value.Print.Primary);
Console.WriteLine("Print - Secondary: " + kvp.Value.Print.Secondary);
[JsonProperty("preview")]
public Preview Preview { get; set; }
public Print Print { get; set; }
public string Front { get; set; }
[JsonProperty("INSIDE_TOP")]
public string InsideTop { get; set; }
[JsonProperty("INSIDE_BOTTOM")]
public string InsideBottom { get; set; }
public string Back { get; set; }
[JsonProperty("primary")]
public string Primary { get; set; }
[JsonProperty("secondary")]
public string Secondary { get; set; }