namespace OOP.Payment { public class PayPalPayment : GenericPayment { public string Email { get; set; } public override void ProcessPayment() { Console.WriteLine("Processing PayPal"); } } }