mirror of https://github.com/morpheus65535/bazarr
13 lines
257 B
Python
13 lines
257 B
Python
|
from plex.objects.core.base import Descriptor, Property
|
||
|
|
||
|
|
||
|
class Server(Descriptor):
|
||
|
name = Property
|
||
|
host = Property
|
||
|
|
||
|
address = Property
|
||
|
port = Property(type=int)
|
||
|
|
||
|
machine_identifier = Property('machineIdentifier')
|
||
|
version = Property
|