For example, change: ```c# public string LastName { get; set; } = null!; ``` to: ```c# public required string LastName { get; set; } ``` Should also update in README.md, documentation, etc.