using System;
namespace MyNamespace;
public partial class MyClass : IMyInterface
{
public MyClass(IThing1 thing1, IThing2 thing2)
{
_thing1 = thing1;
_thing2 = thing2;
}
[MyCustomAttribute]
public string? MyProp { get; set; }
private record MyPrivateRecord(bool Foo);
}