Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Human.cs
T
2023-12-06 21:32:07 +01:00

14 lines
226 B
C#

namespace ProxyInterfaceSourceGeneratorTests.Source
{
public class Human
{
public bool IsAlive { get; set; }
public string GetterOnly => "x";
public void Dispose()
{
}
}
}