using System;
var person = new Person() { FirstName = "Ivo", LastName = "Bobul" };
Console.WriteLine($"Hello {person}!");
public record Person
{
public string FirstName { get; init; }
public string LastName { get; init; }
}