mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 14:43:08 +02:00
10 lines
210 B
Python
10 lines
210 B
Python
|
|
|
|
class Ranting:
|
|
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
|