summaryrefslogtreecommitdiff
path: root/plugin.video.mediathekview/classes/film.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.video.mediathekview/classes/film.py')
-rw-r--r--plugin.video.mediathekview/classes/film.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugin.video.mediathekview/classes/film.py b/plugin.video.mediathekview/classes/film.py
new file mode 100644
index 0000000..b417078
--- /dev/null
+++ b/plugin.video.mediathekview/classes/film.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+# Copyright 2017 Leo Moll and Dominik Schlösser
+#
+
+# -- Imports ------------------------------------------------
+
+# -- Classes ------------------------------------------------
+class Film( object ):
+ def __init__( self ):
+ self.id = 0
+ self.title = u''
+ self.show = u''
+ self.channel = u''
+ self.description = u''
+ self.seconds = 0
+ self.size = 0
+ self.aired = u''
+ self.url_sub = u''
+ self.url_video = u''
+ self.url_video_sd = u''
+ self.url_video_hd = u''