Skip to content

Commit

Permalink
Create movie screening item
Browse files Browse the repository at this point in the history
  • Loading branch information
lyabs243 committed Oct 17, 2023
1 parent 88d314a commit d53d411
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lib/models/movie_screening_item.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import 'package:flutter_calendar_events/models/utils.dart';

class MovieScreeningItem {

final String title;
final String imagePath;
final DateTime dateTime;
final MovieEventState state;

MovieScreeningItem({
required this.title,
required this.dateTime,
required this.imagePath,
this.state = MovieEventState.initial,
});

}

0 comments on commit d53d411

Please sign in to comment.