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

15 lines
225 B
C#

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