What is a class in OOP?
- A blueprint or template for creating objects.
- Defines properties (data) and methods (behavior) that the objects will have.
public class Car
public string Model { get; set; }
public void Start() { Console.WriteLine("Car started"); }