mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-22 22:04:41 +08:00
7 lines
162 B
Python
7 lines
162 B
Python
from plex.objects.core.base import Descriptor, Property
|
|
|
|
|
|
class Container(Descriptor):
|
|
size = Property(type=int)
|
|
|
|
updated_at = Property('updatedAt', int)
|