using System;
var product = new Product("product");
Console.WriteLine(product);
public record Product(string Name);