exos-polymorphism/TicketSystem/Tickets/Child.cs
2023-07-01 16:44:08 +02:00

17 lines
272 B
C#

namespace TicketSystem.Tickets
{
public class Child: Ticket
{
public int price { get; }
public Child()
{
price = 5;
}
public int PriceWithReduction()
{
return 2;
}
}
}