PlexAutoCollectionUpdater/models/movie_collection.py

7 lines
179 B
Python
Raw Normal View History

2021-12-08 17:00:52 +07:00
class MovieCollection:
def __init__(self, id, title):
self.collectionTitle = title
self.collectionId = id
2021-12-08 17:24:29 +07:00
def get_existing_collections(self):
pass