class Car { public string Brand; public int Year; // سازنده public Car(string brand, int year) { Brand = brand; Year = year; } public void DisplayInfo() { Console.WriteLine($"Car Brand: {Brand}, Year: {Year}"); } }