mirror of https://github.com/morpheus65535/bazarr
17 lines
300 B
Python
17 lines
300 B
Python
|
from plex.objects.core.base import Descriptor, Property
|
||
|
|
||
|
|
||
|
class Directory(Descriptor):
|
||
|
key = Property
|
||
|
type = Property
|
||
|
|
||
|
title = Property
|
||
|
|
||
|
size = Property
|
||
|
|
||
|
art = Property
|
||
|
thumb = Property
|
||
|
|
||
|
allow_sync = Property('allowSync', bool)
|
||
|
updated_at = Property('updatedAt', int)
|