source:
src/main/java/com/example/moviezone/model/procedures/TicketsCancelClass.java
Last change on this file was 1e7126f, checked in by , 15 months ago | |
---|---|
|
|
File size: 365 bytes |
Line | |
---|---|
1 | package com.example.moviezone.model.procedures; |
2 | |
3 | import com.example.moviezone.model.Ticket; |
4 | |
5 | public class TicketsCancelClass { |
6 | public Ticket ticket; |
7 | public boolean canCancel; |
8 | |
9 | public TicketsCancelClass(Ticket ticket, boolean canCancel) { |
10 | this.ticket = ticket; |
11 | this.canCancel = canCancel; |
12 | } |
13 | |
14 | public TicketsCancelClass() { |
15 | } |
16 | } |
Note:
See TracBrowser
for help on using the repository browser.