using System.Collections.Generic;
using Microsoft.CodeAnalysis;
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 AddressesDict { get; set; } = new Dictionary();
public E E { get; set; }
public int Add(string s)
{
return 600;
}
public void AddAddress(Address a)
{
AddressesDict.Add($"{AddressesDict.Count}", a);
}
public void Void()
{
//
}
public Compilation Compilation { get; set; }
public INamedTypeSymbol MyNamedTypeSymbol { get; set; }
}
public enum E
{
V1,
V2
}
}