Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Person.cs
T
Stef Heyenrath 7c68455a8e initial code
2021-07-23 16:28:11 +02:00

33 lines
514 B
C#

namespace SourceGeneratorInterface
{
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 E E { get; set; }
public int Add(string s)
{
return 600;
}
}
public class Address
{
public int X { get; }
}
public enum E
{
V1,
V2
}
}