mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-22 15:18:42 -04:00
8 lines
162 B
Python
8 lines
162 B
Python
from plex.objects.core.base import Descriptor, Property
|
|
|
|
|
|
class Container(Descriptor):
|
|
size = Property(type=int)
|
|
|
|
updated_at = Property('updatedAt', int)
|