namespace TicketSystem.Tickets { public enum TicketType { Child, Student, Adult } public interface Ticket { int price { get; } int PriceWithReduction(); } }