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