Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Human.cs
T
2022-02-04 11:33:26 +01:00

11 lines
192 B
C#

using Xunit.Sdk;
namespace ProxyInterfaceSourceGeneratorTests.Source
{
public class Human
{
public bool IsAlive { get; set; }
public string GetterOnly => "x";
}
}