C Sharp (C#) - Properties and Encapsulation
Identify the error in this code snippet:
public class Car {
public string Model { get; init; }
}
var car = new Car();
car.Model = "Sedan";
