AutoMapper
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
using Microsoft.CodeAnalysis;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.CodeAnalysis;
|
||||
|
||||
namespace ProxyInterfaceConsumer
|
||||
{
|
||||
public class Person
|
||||
{
|
||||
|
||||
private int PrivateId { get; }
|
||||
public int Id { get; }
|
||||
|
||||
@@ -14,6 +14,10 @@ namespace ProxyInterfaceConsumer
|
||||
|
||||
public Address Address { get; set; }
|
||||
|
||||
public List<Address> AddressesLIst { get; set; }
|
||||
|
||||
public Dictionary<string, Address> AddressesDict { get; set; }
|
||||
|
||||
public E E { get; set; }
|
||||
|
||||
public int Add(string s)
|
||||
@@ -28,11 +32,9 @@ namespace ProxyInterfaceConsumer
|
||||
|
||||
public Compilation Compilation { get; set; }
|
||||
|
||||
public INamedTypeSymbol MyNamedTypeSymbol { get;set; }
|
||||
public INamedTypeSymbol MyNamedTypeSymbol { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
public enum E
|
||||
{
|
||||
V1,
|
||||
|
||||
Reference in New Issue
Block a user