"Record Without Positional Properties"

public record User {
	public string Name { get; init; }
	public int Age { get; init; }
}


Code snippet taken from "Complete C# Quick Reference - C# 9".