Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Person.cs
T
Stef Heyenrath 2531e8e688 AutoMapper
2021-07-25 15:26:50 +02:00

43 lines
820 B
C#

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<Address> AddressesLIst { get; set; }
public Dictionary<string, Address> AddressesDict { get; set; }
public E E { get; set; }
public int Add(string s)
{
return 600;
}
public void Void()
{
//
}
public Compilation Compilation { get; set; }
public INamedTypeSymbol MyNamedTypeSymbol { get; set; }
}
public enum E
{
V1,
V2
}
}