#nullable enable
using System;
public class Program
{
public static void Main()
var sow = new Sow();
Console.WriteLine($"This sow is of Type: {sow.SowType.Name}");
}
public class SowType
public string Name {get;}
public SowType(string name)
Name = name;
public class Sow
public SowType SowType {get; set;} = null!;