mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-02-19 23:27:33 -05: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)
|