7 lines
169 B
Python
7 lines
169 B
Python
|
class Viewing:
|
||
|
|
||
|
def __init__(self, date_watched, season, rating):
|
||
|
self.date_watched = date_watched
|
||
|
self.season = season
|
||
|
self.rating = rating
|