WUT_Computer_Science/analitics/Rating.py

10 lines
209 B
Python
Raw Normal View History

2024-06-16 19:26:07 +02:00
class Rating:
def __init__(self, id, movie_id, user_id, ranting, time):
self.id=id
self.movie_id=movie_id
self.user_id=user_id
self.ranting=ranting
self.time=time