I need the key and value data from SharedToDomains and SharedFromDomains. I want to print the values.
var LogResponse = DeserializeFromJson<AttributeContainer>(sLogResponse);
public class AttributeContainer
{
public Dictionary<string, int> MimeTypes { get; set; }
public Dictionary<string, Domain> SharedToDomains { get; set; }
public Dictionary<string, Domain> SharedFromDomains { get; set; }
}