14 lines
329 B
Python
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 |