using System;
public class Program
{
public class Test
public string TestProp { get;init; }
}
public static void Main()
Test t = new();
Test t1 = new() { TestProp = "123" };
Console.WriteLine(t.TestProp);
Console.WriteLine(t1.TestProp);