AutoMapper

This commit is contained in:
Stef Heyenrath
2021-07-25 15:26:50 +02:00
parent 3c9a292a0c
commit 2531e8e688
9 changed files with 264 additions and 96 deletions
@@ -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,