public class EngineerProfile
{
public string Name { get; set; } = "Chris Whiteley";
public string PrimaryStack { get; set; } = ".NET / C#";
public string[] Interests { get; set; } =
new[]
{
"Artificial Intelligence",
"Personal Projects",
".NET"
};
} latest