PlexAutoCollectionUpdater/models/movie_collection.py
2021-12-08 11:24:29 +01:00

7 lines
179 B
Python

class MovieCollection:
def __init__(self, id, title):
self.collectionTitle = title
self.collectionId = id
def get_existing_collections(self):
pass