Last change
on this file since 1e7126f was 1e7126f, checked in by DenicaKj <dkorvezir@…>, 15 months ago |
fix
|
-
Property mode
set to
100644
|
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.