public class MyService
{
    public List<string> Things { get; }

    public MyService()
    {
        Things = new();
    }
}