Files
recordingprocessing/libtvdatasource.py
2013-07-05 21:30:01 +10:00

14 lines
329 B
Python

# -*- coding: utf-8 -*-
"""
Created on Fri Jul 5 14:42:47 2013
@author: shanef
"""
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