namespace TicketSystem.Tickets { public enum TicketType { Child, Student, Adult } public class Ticket { private int price { get; } public Ticket() { price = 20; } } }