Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Human.cs
T
Adam Hathcock e341772cbc add csharpier
2024-05-21 16:34:46 +01:00

12 lines
210 B
C#

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