Files
OOP/Payment/Payment.cs
2025-08-18 10:24:52 +02:00

13 lines
281 B
C#

namespace OOP.Payment
{
public class GenericPayment
{
public int amount { get; set; }
public string Currency { get; set; }
public virtual void ProcessPayment()
{
Console.WriteLine("Processing generic payment");
}
}
}