exos-polymorphism/TicketSystem/Tickets/Ticket.cs
2023-07-01 16:59:32 +02:00

19 lines
264 B
C#

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