public record MyRecord
{
public string SomeMember { get; init; }
}
public record Person(string FirstName, string? MiddleName, string LastName);
public record MyRecord
{
public string SomeMember { get; init; }
}
public record Person(string FirstName, string? MiddleName, string LastName);