using System.Collections.Generic; namespace ProxyInterfaceConsumer { public class Person { private int PrivateId { get; } public int Id { get; } public long? NullableLong { get; } public string Name { get; set; } public Address Address { get; set; } public List
AddressesLIst { get; set; } public Dictionary