recordingprocessing/libtvdatasource.py

14 lines
329 B
Python
Raw Normal View History

2013-07-05 14:48:21 +10:00
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 5 14:42:47 2013
@author: shanef
"""
2013-07-05 21:30:01 +10:00
class TVShow:
def __init__(self, episode, season, title, subtitle, description):
self.episode = episode
self.season = season
self.title = title
self.subtitle = subtitle
self.description = description