11 lines
192 B
C#
11 lines
192 B
C#
using Xunit.Sdk;
|
|
|
|
namespace ProxyInterfaceSourceGeneratorTests.Source
|
|
{
|
|
public class Human
|
|
{
|
|
public bool IsAlive { get; set; }
|
|
|
|
public string GetterOnly => "x";
|
|
}
|
|
} |