15 lines
225 B
C#
15 lines
225 B
C#
namespace TicketSystem.Tickets
|
|
{
|
|
public enum TicketType
|
|
{
|
|
Child,
|
|
Student,
|
|
Adult
|
|
}
|
|
|
|
public interface Ticket
|
|
{
|
|
int price { get; }
|
|
int PriceWithReduction();
|
|
}
|
|
} |